-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsortingAlgo.py
373 lines (307 loc) · 8.2 KB
/
sortingAlgo.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
import time
import random
def selection(A):
"""
Algo name: Selection Sort
UNSTABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
for i in range(n-1):
position = i
for j in range(i + 1, n):
if A[j] < A[position]:
position = j
A[i], A[position] = A[position], A[i]
###############################################################
def insertion(A):
"""
Algo name: Insertion Sort
STABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
for i in range(1, n):
cvalue = A[i]
position = i
while position > 0 and A[position - 1] > cvalue:
A[position] = A[position - 1]
position = position - 1
A[position] = cvalue
###############################################################
def bubble(A):
"""
Algo name: Bubble Sort
STABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
for p in range(n-1, 0, -1):
for i in range(0, p):
if A[i] > A[i + 1]:
A[i], A[i+1] = A[i+1], A[i]
###############################################################
def shell(A):
"""
Algo name: Shell Sort
UNSTABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
gap = n//2
while gap > 0:
i = gap
while i < n:
temp = A[i]
j = i - gap
while j >= 0 and A[j] > temp:
A[j+gap] = A[j]
j = j - gap
A[j+gap] = temp
i = i + 1
gap = gap // 2
###############################################################
def merge(A, l, m, r):
"""
Algo name: Merge
input:
A -- Array
l -- first index position of the array
m -- middle index postion of the array calculated
using l and r
r -- last index position of the array
returns Sorted partial array A
"""
i = l
j = m + 1
k = l
B = [0] * (r + 1)
while i <= m and j <= r:
if A[i] < A[j]:
B[k] = A[i]
i = i + 1
else:
B[k] = A[j]
j = j + 1
k = k + 1
while i <= m:
B[k] = A[i]
i = i + 1
k = k + 1
while j <= r:
B[k] = A[j]
j = j + 1
k = k + 1
for x in range(l, r + 1):
A[x] = B[x]
def mergesort(A, left, right):
"""
Algo name: Merge Sort
UNSTABLE
input:
A -- Array
left -- first index position of the array(0 in first call)
right -- last index position of the array(len(A) - 1 in the first call)
"""
if left < right:
mid = (left + right) // 2
mergesort(A, left, mid)
mergesort(A, mid + 1, right)
merge(A, left, mid, right)
def merge_driver(A):
mergesort(A, 0, len(A)-1)
###############################################################
def partition(A, low, high):
pivot = A[low]
i = low + 1
j = high
while True:
while i <= j and A[i] <= pivot:
i = i + 1
while i <= j and A[i] > pivot:
j = j - 1
if i <= j:
A[i], A[j] = A[j], A[i]
else:
break
A[low], A[j] = A[j], A[low]
return j
def quicksort(A, low, high):
"""
Algo name: Quick Sort
UNSTABLE
input:
A -- Array
left -- first index position of the array(0 in first call)
right -- last index position of the array(len(A) - 1 in the first call)
"""
if low < high:
p = partition(A, low, high)
quicksort(A, low, p - 1)
quicksort(A, p + 1, high)
def quick_driver(A):
quicksort(A, 0, len(A)-1)
###############################################################
def count(A):
"""
Algo name: Count Sort
STABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
maxsize = max(A)
carray = [0] * (maxsize + 1)
for i in range(n):
carray[A[i]] = carray[A[i]] + 1
i = 0
j = 0
while i < maxsize + 1:
if carray[i] > 0:
A[j] = i
j = j + 1
carray[i] = carray[i] - 1
else:
i = i + 1
###############################################################
def radix(A):
"""
Algo name: Radix Sort
STABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
maxelement = max(A)
digits = len(str(maxelement))
l = []
bins = [l] * 10
for i in range(digits):
for j in range(n):
e = int((A[j] / pow(10, i)) % 10)
if len(bins[e]) > 0:
bins[e].append(A[j])
else:
bins[e] = [A[j]]
k = 0
for x in range(10):
if len(bins[x]) > 0:
for y in range(len(bins[x])):
A[k] = bins[x].pop(0)
k = k + 1
###############################################################
def heapsort(A):
"""
Algo name: Heap Sort
UNSTABLE
input:
A -- Array
returns sorted array
"""
import sys
sys.path.append('.')
from Heap.heap import Heap
n = len(A)
heap = Heap(n)
for i in range(n):
heap.insert(A[i])
k = n - 1
for _ in range(heap._size):
A[k] = heap.deleteMax()
k -= 1
###############################################################
def bucket(A):
"""
Algo name: Bucket Sort
STABLE
input:
A -- Array
returns sorted array
"""
n = len(A)
maximum = max(A)
l = []
buckets = [l] * 10
for i in range(n):
index = int((n * A[i]) / (maximum + 1))
if len(buckets[index]) == 0:
buckets[index] = [A[i]]
else:
buckets[index].append(A[i])
for i in range(10):
insertion(buckets[i])
k = 0
for i in range(10):
for j in range(len(buckets[i])):
A[k] = buckets[i].pop(0)
k = k + 1
###############################################################
def timereq(choices, algo_name):
"""
Utility function to calculate time required(in nanoseconds) to sort the given array.
"""
for c, name in zip(choices, algo_name):
start = time.time()
c(A)
end = time.time()
print('Time taken by', name, ':', (end - start) * 10 ** 6, "nanoseconds")
###############################################################
def create_array():
"""
Return randomly generates an integer array having limit as upper limit
and amount as length of the array
"""
limit = int(input("Enter the upper limit for generating the numbers: "))
amount = int(input("Enter the amount of numbers you want to generate: "))
print("Generating numbers...\n")
array = []
for i in range(amount):
n = random.randint(0, limit)
array.append(n)
return array
###############################################################
def options():
'''
Prints Menu for operations
'''
options_list = ['Selection Sort', 'Insertion Sort', 'Bubble Sort', 'Shell Sort',
'Merge Sort', 'Quick Sort', 'Count Sort', 'Radix Sort', 'Heap Sort',
'Bucket Sort', 'Time Required', 'Exit']
print("MENU")
for i, option in enumerate(options_list):
print(f'{i + 1}. {option}')
def switch_case(choice):
choices = [selection, insertion, bubble, shell, merge_driver,
quick_driver, count, radix, heapsort, bucket]
algo_name = ['Selection Sort', 'Insertion Sort', 'Bubble Sort', 'Shell Sort', 'Merge Sort',
'Quick Sort', 'Count Sort', 'Radix Sort', 'Heap Sort', 'Bucket Sort']
if choice != 11:
choices[choice-1](A)
print("Sorted using", algo_name[choice - 1], "\n", A)
else:
timereq(choices, algo_name)
###############################################################
if __name__ == '__main__':
while True:
x = input("Enter your own array values? [y/n]: ")
if x == 'y':
A = list(map(int, input("Enter values: ").split()))
options()
else:
A = create_array()
options()
choice = int(input("Enter your choice: "))
if choice != 12:
switch_case(choice)
else:
break