-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquick sort.py
36 lines (36 loc) · 1.09 KB
/
quick 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
34
35
36
import random
from timeit import default_timer as timer
import matplotlib.pyplot as plt
def partition(array, low, high):
pivot = array[high]
i = low - 1
for j in range(low, high):
if array[j] <= pivot:
i = i + 1
(array[i], array[j]) = (array[j], array[i])
(array[i + 1], array[high]) = (array[high], array[i + 1])
return i + 1
def quickSort(array, low, high):
if low < high:
pi = partition(array, low, high)
quickSort(array, low, pi - 1)
quickSort(array, pi + 1, high)
x=[]
y=[]
for i in range(3):
n=int(input("\nenter the value of n:"))
x.append(n)
arr = [random.randint(0, 1000) for _ in range(n)]
print("\nthe array elements are",arr)
start_time = timer()
ind=quickSort(arr,low=0,high=n-1)
end_time = timer()
print("array elements are ", arr)
elapsed_time = end_time - start_time
y.append(elapsed_time)
print("time taken=", elapsed_time)
plt.plot(x,y)
plt.title('Time Taken for quick sort')
plt.xlabel('n')
plt.ylabel('Time (seconds)')
plt.show()