forked from hacktoberfest17/programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquick_sort.py
More file actions
26 lines (26 loc) · 709 Bytes
/
quick_sort.py
File metadata and controls
26 lines (26 loc) · 709 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
import random
import time
def partition(arr,low,high):
i = ( low-1 )
pivot = arr[high]
for j in range(low , high):
if arr[j] <= pivot:
i = i+1
arr[i],arr[j] = arr[j],arr[i]
arr[i+1],arr[high] = arr[high],arr[i+1]
return ( i+1 )
def quickSort(arr,low,high):
if low < high:
pi = partition(arr,low,high)
quickSort(arr, low, pi-1)
quickSort(arr, pi+1, high)
arr = random.sample(range(10000),10)
n = len(arr)
x = time.time()
quickSort(arr,0,n-1)
y = time.time()
print("Time taken by quick sort is: ")
print(y-x)
print ("Sorted array is:")
for i in range(n):
print ("%d" %arr[i])