-
Notifications
You must be signed in to change notification settings - Fork 371
/
DNF_Sort.py
33 lines (25 loc) · 879 Bytes
/
DNF_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
#Function to swap elements `A[i]` and `A[j]` in the list
def swapfunc(A, i, j):
temp = A[i]
A[i] = A[j]
A[j] = temp
# Linear time partition routine to sort a list containing 0, 1, and 2.
# It is similar to 3–way partitioning for the Dutch national flag problem.
def threeWayPartition(A):
start = mid = 0
pivot = 1
end = len(A) - 1
while mid <= end:
if A[mid] < pivot: # current element is 0
swapfunc(A, start, mid)
start = start + 1
mid = mid + 1
elif A[mid] > pivot: # current element is 2
swapfunc(A, mid, end)
end = end - 1
else: # current element is 1
mid = mid + 1
if __name__ == '__main__':
A = [0, 1, 2, 2, 1, 0, 0, 2, 0, 1, 1, 0]
threeWayPartition(A)
print(A)