Sub test()
Dim Liste As Variant
Liste = Array("jaune", "vert", "orange", "blanc", "rouge", "noir", "fuchsia", "marron")
'
' Choisir croissant (Pour le tri)
tri Liste, LBound(Liste), UBound(Liste)
MsgBox Join(liste, vbLf)
End Sub
'
Sub tri(a As Variant, gauc, droi) ' Quick sort
ref = a((gauc + droi) \ 2)
g = gauc: d = droi
Do
'
' Choix du tri avec appel de la fonction ci-dessous :
' ------------------------------------------------------
'
' Croissant
croissant a, g, ref, d
'
' Ou
'
' Décroissant
' décroissant a, g, ref, d
'
If g <= d Then
temp = a(g): a(g) = a(d): a(d) = temp
g = g + 1: d = d - 1
End If
Loop While g <= d
If g < droi Then Call tri(a, g, droi)
If gauc < d Then Call tri(a, gauc, d)
End Sub
'
Sub croissant(a, g, ref, d)
' Pour un tri croissant
Do While a(g) < ref: g = g + 1: Loop
Do While ref < a(d): d = d - 1: Loop
End Sub
'
Sub décroissant(a, g, ref, d)
' Pour un tri décroissant
Do While a(g) > ref: g = g + 1: Loop
Do While ref > a(d): d = d - 1: Loop
End Sub