-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmerge_sort.py
More file actions
37 lines (30 loc) · 789 Bytes
/
merge_sort.py
File metadata and controls
37 lines (30 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
def merge_sort(arr):
if len(arr) > 1:
mid = len(arr) // 2
left = arr[:mid]
right = arr[mid:]
merge_sort(left)
merge_sort(right)
i = j = k = 0
while i < len(left) and j < len(right):
if left[i] < right[j]:
arr[k] = left[i]
i += 1
else:
arr[k] = right[j]
j += 1
k += 1
while i < len(left):
arr[k] = left[i]
i += 1
k += 1
while j < len(right):
arr[k] = right[j]
j += 1
k += 1
if __name__ == "__main__":
array = [9, 8, 3, 4, 6, 5]
expectation = sorted(array)
merge_sort(array)
print(array)
assert array == expectation