-
Notifications
You must be signed in to change notification settings - Fork 248
/
Copy pathquicksort.py
43 lines (30 loc) · 910 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
# https://gist.github.com/Subject22/6d340d7e2ef9a8f3ff1b49c48af57e7e
def qs(items):
pivot = items[0]
smaller = []
equal = []
larger = []
for item in items:
if item < pivot:
smaller.append(item)
elif item > pivot:
larger.append(item)
else: # item == pivot
equal.append(item)
return qs(smaller) + equal + qs(larger)
def qs_in_place(array, begin=0, end=None):
if end is None:
end = len(array) - 1
if begin >= end:
return
pivot = partition(array, begin, end)
qs_in_place(array, begin, pivot-1)
qs_in_place(array, pivot+1, end)
def partition(array, start, end):
pivot = start
for i in range(start+1, end+1):
if array[i] <= array[start]:
pivot += 1
array[i], array[pivot] = array[pivot], array[i]
array[pivot], array[start] = array[start], array[pivot]
return pivot