Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
Sub InsertionSort(theList() as Integer)
|
||||
for insertionElementIndex as Integer = 1 to UBound(theList)
|
||||
dim insertionElement as Integer = theList(insertionElementIndex)
|
||||
dim j as Integer = insertionElementIndex - 1
|
||||
while (j >= 0) and (insertionElement < theList(j))
|
||||
theList(j + 1) = theList(j)
|
||||
j = j - 1
|
||||
wend
|
||||
theList(j + 1) = insertionElement
|
||||
next
|
||||
End Sub
|
||||
Loading…
Add table
Add a link
Reference in a new issue