forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
QuickSort.py
59 lines (45 loc) · 1.56 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
# Program to implement QuickSort Algorithm in Python
'''
This function takes last element as pivot, places the pivot element at
its correct position in sorted array, and places all smaller(smaller than
pivot) to left of pivot and all greater elements to right of pivot
'''
def partition(arr, low, high):
'''
The value of i is initialized to (low-1) since initially first element
is swapped by itself
Reason: no greater element has been encountered apart from itself
'''
pivotElement = arr[high]
i = (low - 1)
for j in range(low, high):
if arr[j] < pivotElement:
i += 1
# swap elements arr[i] and arr[j]
arr[i], arr[j] = arr[j], arr[i]
# swap pivot element with element at index=(i + 1) since loop ended,
# to obtain LHS of pivot
arr[i + 1], arr[high] = arr[high], arr[i + 1]
return(i + 1)
'''
This is the calling function that implements QuickSort algorithm, where:
arr = input array given by user
low = starting index
high = ending index
'''
def quickSort(arr, low, high):
if low < high:
# pi is partitioning index, arr[p] is now at right place
pi = partition(arr, low, high)
# Separately sort elements before partition and after partition
quickSort(arr, low, pi-1)
quickSort(arr, pi+1, high)
# main function
if __name__ == "__main__":
n = int(input())
arr = list(map(int, input().split()))
quickSort(arr, 0, n-1)
# print the final sorted array in ASCending order
for i in range(n):
print(arr[i], end=" ")
print()