forked from LisCoding/Interview-Algo-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuickSort.py
46 lines (32 loc) · 986 Bytes
/
QuickSort.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
class Solution(object):
def QuickSort(self, list, left=0,right=None):
if right==None:
right = len(list)-1
if left < right:
result = self.partition(list, left, right)
self.QuickSort(list, left, result)
self.QuickSort(list, result+1, right)
# import pdb;pdb.set_trace()
return list
def partition(self, list, left, right):
pivot = left
while (right>=left):
while (left<=right and list[left] <= list[pivot]):
left+=1
while (list[right] > list[pivot]):
right-=1
if (right>left):
list[left], list[right] = list[right], list[left]
left+=1
right-=1
if (list[right] < list[pivot]):
list[right], list[pivot] = list[pivot], list[right]
# print('bye', list, list[right], list[pivot])
return right
obj = Solution()
a= [10, -6, 20, 2, 34, 4, -10, 12, 38, -2, -12, 0]
b= [10, -6, 20]
c= [10, 20, -6]
d= [10, 20]
e= [10, -6]
print(obj.QuickSort(a))