-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeSort.py
More file actions
41 lines (38 loc) · 1.02 KB
/
Copy pathMergeSort.py
File metadata and controls
41 lines (38 loc) · 1.02 KB
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
### START-MERGESORT
def mergeSortRecursive(alist):
if len(alist)>1:
mid = len(alist)//2
lefthalf = alist[:mid]
righthalf = alist[mid:]
mergeSortRecursive(lefthalf)
mergeSortRecursive(righthalf)
i=0
j=0
k=0
while i < len(lefthalf) and j < len(righthalf):
if lefthalf[i] < righthalf[j]:
alist[k]=lefthalf[i]
i=i+1
else:
alist[k]=righthalf[j]
j=j+1
k=k+1
while i < len(lefthalf):
alist[k]=lefthalf[i]
i=i+1
k=k+1
while j < len(righthalf):
alist[k]=righthalf[j]
j=j+1
k=k+1
### END-MERGESORT
if __name__ == "__main__":
lst = []
while True:
userinput = input("Give list you would like sorted: ")
if userinput == 'end':
break
lst.append(int(userinput))
print("Unsorted List: " + str(lst))
mergeSortRecursive(lst)
print ("Sorted List: " + str(lst))