September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -8,12 +8,10 @@ fun merge(left, right):
|
|||
let result = []
|
||||
while not (left.isempty or right.isempty):
|
||||
if left[1] <= right[1]:
|
||||
result.push left.shift()
|
||||
result.push! left.shift!()
|
||||
else:
|
||||
result.push right.shift()
|
||||
result.push left.push right
|
||||
result.push! right.shift!()
|
||||
result.push! left.push! right
|
||||
|
||||
let arr = [7, 6, 5, 9, 8, 4, 3, 1, 2, 0]
|
||||
print mergesort arr
|
||||
|
||||
print mergeSort arr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue