
14/07/2005, 10:23
|
 | Moderador | | Fecha de Ingreso: enero-2002
Mensajes: 8.031
Antigüedad: 23 años, 3 meses Puntos: 98 | |
Código:
'Funcion para ordenar arreglo, metodo de la burbuja
Function OrdenaArreglo(arreglo)
Dim x, y, temp
If isArray(arreglo) Then
'Dim temp
For x = 0 to uBound(arreglo)
For y = x + 1 to uBound(arreglo)
If arreglo(x, 0) > arreglo(y, 0) Then
temp = arreglo(x, 0)
temp2 = arreglo(x, 1)
arreglo(x, 0) = arreglo(y, 0)
arreglo(x, 1) = arreglo(y, 1)
arreglo(y, 0) = temp
arreglo(y, 1) = temp2
End If
Next
Next
Else
OrdenaArreglo = Null
End If
OrdenaArreglo = arreglo
End Function
Aqui hay una funcion que ordena un arreglo bidimensional de 2 columnas, solo querras modificar el numero de estas columnas.
Salu2,
__________________ "El hombre que ha empezado a vivir seriamente por dentro, empieza a vivir más sencillamente por fuera."
-- Ernest Hemingway |