working through mit intro to algorithms, first with insertion sort
This commit is contained in:
commit
d5e7f537e6
8
insertion_sort01.py
Normal file
8
insertion_sort01.py
Normal file
@ -0,0 +1,8 @@
|
||||
def insertion_sort(A):
|
||||
for j in range(1, len(A)):
|
||||
key = A[j]
|
||||
i = j - 1
|
||||
while i >= 0 and A[i] > key:
|
||||
A[i + 1] = A[i]
|
||||
i = i - 1
|
||||
A[i + 1] = key
|
Loading…
Reference in New Issue
Block a user