-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmerge_sort.py
69 lines (52 loc) · 1.39 KB
/
merge_sort.py
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
def merge_sort(listToSort):
"""
sorts a list in descending order
Returns a new sordted list
"""
if len(listToSort) <= 1:
return listToSort
leftHalf, rightHalf = split(listToSort)
left = merge_sort(leftHalf)
right = merge_sort(rightHalf)
return merge(left, right)
def split(listToSplit):
"""
Divide the unsorted list at midpoint into sublists
Return two sublists left and right
"""
mid = len(listToSplit) // 2
left = listToSplit[:mid]
right = listToSplit[mid:]
return left, right
def merge(leftList, rightList):
"""
Merges two lists(arrays), sorting them in process
:returns a new merged list
"""
l = []
i = 0
j = 0
while i < len(leftList) and j < len(rightList):
if leftList[i] < rightList[j]:
l.append(leftList[i])
i += 1
else:
l.append(rightList[j])
j += 1
while i < len(leftList):
l.append(leftList[i])
i += 1
while j < len(rightList):
l.append(rightList[j])
j += 1
return l
def verify_Sorted(listToTest):
n = len(listToTest)
if n == 0 or n == 1:
return True
else:
return listToTest[0] < listToTest[1] and verify_Sorted(listToTest[1:])
aList = [56, 23, 45, 98, 100, 112, 7, 21]
a = merge_sort(aList)
print(a)
print("Is the list sorted:- ", verify_Sorted(a))