Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Function BubbleSort(Data() As Integer)
Dim Temp As Integer
Dim i As Integer
Dim j As Integer
For i = 1 To UBound(Data)
If Data(i - 1) > Data(i) Then
j = i
While j > 0
If Data(j - 1) > Data(j) Then
Temp = Data(j)
Data(j) = Data(j - 1)
Data(j - 1) = Temp
Else
j = 0
End If
j = j - 1
Wend
End If
Next i
BubbleSort = Data
End Function