all tasks
This commit is contained in:
parent
b83f433714
commit
68f8f3e56b
14735 changed files with 178959 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