'Para poder devolver potencias
Private Type tPotencia
Base As Integer
Exponente As Integer
End Type
'Lista global de números primos que vamos a necesitar para factorizar
Public ListaPrimos(MaxPrimos) As Integer
'Rellenamos con un elemento inicial superfluo, la factorizacion comienza en el índice 1
Dim Factorizacion(0) As tPotencia
Public Sub Factorizar(ByVal A as Integer, ByRef Factorizacion() As tPotencia, ByRef NumFactores As Integer)
Dim i As Integer
i = 0
NumFactores = 0
'Mientras A pueda descomponerse y no hayamos llegado al máximo de los primos
Do (While A > 1) And (i<=MaxPrimos)
'A es divisible por ListaPrimos(i)
If (A Mod ListaPrimos(i)) = 0 Then
A = A / ListaPrimos(i)
If Factorizacion(NumFactores).Base <> ListaPrimos(i) Then
'Nuevo factor
NumFactores = NumFactores + 1
ReDim Factorizacion(NumFactores)
Factorizacion(NumFactores).Base = ListaPrimos(i)
Factorizacion(NumFactores).Exponente = 1
Else
'Factor ya existe
Factorizacion(NumFactores).Exponente = Factorizacion(NumFactores).Exponente + 1
End If
'Pasamos al siguiente primo
Else
i = i + 1
End If
Loop
If i > MaxPrimos Then
MsgBox "ListaPrimos insuficiente para factorizar A"
End If
End Sub