-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick_sort.py
64 lines (53 loc) · 1.46 KB
/
quick_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
"""
Creates two empty arrays to hold elements less than the pivot value
and elements greater than the pivot value, and then recursively sort the sub
arrays. There are two basic operations in the algorithm, swapping items in
place and partitioning a section of the array.
"""
import time
import random
a = [5, 4, 2, 51, 48, 31, 52]
def partition(a, p, r):
x = a[r]
i = p-1
for j in range(p, r):
if a[j] <= x:
i = i+1
a[i], a[j] = a[j], a[i]
a[i+1], a[r] = a[r], a[i+1]
return i+1
def quickSort(a, p, r):
if p < r:
q = partition(a, p, r)
quickSort(a, p, q-1)
quickSort(a, q+1, r)
s = time.time()
print("unorder list is: ", a)
quickSort(a, 0, len(a)-1)
print("sorted list is: ", a)
e = time.time()
print("Exeution time", e-s)
# # best case
# card_list = [i for i in range(100)]
# print("Best Case")
# s = time.time()
# quickSort(card_list, 0, len(card_list)-1)
# e = time.time()
# print("Exeution time", e-s)
# print()
# # Worst case
# print("Worst Case")
# card_list = [i for i in range(100, -1, -1)]
# s = time.time()
# quickSort(card_list, 0, len(card_list)-1)
# e = time.time()
# print("Exeution time", e-s)
# print()
# # average case
# print("Average Case")
# card_list = [random.randint(0, 999) for i in range(100)]
# s = time.time()
# quickSort(card_list, 0, len(card_list)-1)
# e = time.time()
# print("Exeution time", e-s)
# print()