forked from subhashissuara/SortingAlgoTimeComparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
41 lines (33 loc) · 956 Bytes
/
test.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
# --------------------------
# Author: Subhashis Suara
# Student ID: UCSE19012
# --------------------------
import sortingAlgos as sas
# Testing all the algorithms
inputArray = [5, 4, 3, 2, 1]
n = len(inputArray)
# # Bubble Sort
# sas.bubbleSort(inputArray)
# print('Bubble Sort:')
# for i in range(len(inputArray)):
# print(inputArray[i], end=" ")
# # Selection Sort
# sas.selectionSort(inputArray)
# print('Selection Sort:')
# for i in range(len(inputArray)):
# print(inputArray[i], end=" ")
# # Insertion Sort
# sas.insertionSort(inputArray)
# print('Insertion Sort:')
# for i in range(len(inputArray)):
# print(inputArray[i], end=" ")
# # Merge Sort
# sas.mergeSort(inputArray, 0, n - 1)
# print('Merge Sort:')
# for i in range(len(inputArray)):
# print(inputArray[i], end=" ")
# # Quick Sort
# sas.quickSort(inputArray, 0, n - 1)
# print('Quick Sort:')
# for i in range(len(inputArray)):
# print(inputArray[i], end=" ")