forked from Krushna-Prasad-Sahoo/Sorting-Python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuickSort.py
More file actions
Latest commit
47 lines (35 loc) · 983 Bytes
/
Copy pathQuickSort.py
File metadata and controls
47 lines (35 loc) · 983 Bytes
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
defpartition(arr, low, high):
i= (low-1) # index of smaller element
pivot=arr[high] # pivot
forjinrange(low, high):
# If current element is smaller than or
# equal to pivot
ifarr[j] <=pivot:
# increment index of smaller element
i=i+1
arr[i], arr[j] =arr[j], arr[i]
arr[i+1], arr[high] =arr[high], arr[i+1]
return (i+1)
# The main function that implements QuickSort
# arr[] --> Array to be sorted,
# low --> Starting index,
# high --> Ending index
# Function to do Quick sort
defquickSort(arr, low, high):
iflen(arr) ==1:
returnarr
iflow<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)
# Driver code to test above
arr= [10, 7, 8, 9, 1, 5]
n=len(arr)
quickSort(arr, 0, n-1)
print("Sorted array is:")
foriinrange(n):
print("%d"%arr[i]),