-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
139 lines (127 loc) · 3.65 KB
/
main.cpp
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
/*
Declare your functions here and put code for functions' definitions below main() function
*/
//function that creates a random vector called rVec of size "asize"
#include<iostream>
#include<vector>
#include<string>
using namespace std;
void randomVector(vector<int> &rVec, int asize){
rVec.resize(asize, 0);
for(int i = 0; i < asize; i++){
rVec[i] = rand() % (1000000);
}
}
//Bubble Sort implementation, returns a sorted vector
vector<int> Bubble(vector<int> v){
bool sorted = false;
while(!sorted){
sorted = true;
for(int i = 1; i < v.size(); i++){
if(v[i-1] > v[i]){
swap(v[i], v[i-1]);
sorted = false;
}
}
}
return v;
}
//Insertion Sort implementation, returns a sorted vector
vector<int> Insert(vector<int> v){
int j, e;
for(int i = 1; i < v.size(); i++){
j = i - 1;
e = v[i];
while(j >= 0 && v[j] > e){
v[j+1] = v[j];
j--;
}//while
v[j+1] = e;
}//for
return v;
}
//Selection Sort implementation, returns a sorted vector
vector<int> Selection(vector<int> v){
for(int i = 0; i < v.size()-1; i++){
int uMin = i;
for(int j = i+1; j < v.size(); j++){
if(v[j] < v[uMin])
uMin = j;
}
swap(v[i], v[uMin]);
}
return v;
}
//Quicksort implementation, returns a sorted vector
vector<int> Quick(vector<int> &v){
if(v.size() <= 1)
return v;
int pivot = v[0];
vector<int> A;
vector<int> B;
for(int i = 1; i < (int)v.size(); i++){
if(v[i] <= pivot)
A.push_back(v[i]);
else
B.push_back(v[i]);
}
A = Quick(A);
B = Quick(B);
A.push_back(pivot);
for (int i = 0; i < (int)B.size(); i++){
A.push_back(B[i]);
}
return A;
}
int main(){
srand(time(0));
int TOTAL = 5;
int sizesOfVectors[TOTAL] = {1000, 10000, 50000, 100000, 200000};
for(int i = 0; i < TOTAL; i++){
int curSize = sizesOfVectors[i];
vector<int> origVector;
randomVector(origVector, curSize);
//origVector contains random integers
//for each algorithm, make a separate copy of the original vector
//bubble sort
vector<int> bubbleVec = origVector;
//run bubble sort and measure time of bubble sort:
clock_t t1 = clock();
//call bubble sort in the line below:
Bubble(bubbleVec);
clock_t t2 = clock();
double elapsed = double(t2 - t1)/CLOCKS_PER_SEC;
cout << "Bubble sort (size and run time in sec): " << curSize << " " << elapsed << endl;
//insertion sort
vector<int> insertionVec = origVector;
//run insertion sort and measure the run time:
t1 = clock();
//call insertion sort in the line below:
Insert(insertionVec);
//insertionVec vector
t2 = clock();
elapsed = double(t2 - t1)/CLOCKS_PER_SEC;
cout << "Insertion sort (size and run time in sec): " << curSize << " " << elapsed << endl;
//selection sort
vector<int> selectionVec = origVector;
//run selection sort and measure the run time:
t1 = clock();
//call selection sort in the line below:
Selection(selectionVec);
// selectionVec vector
t2 = clock();
elapsed = double(t2 - t1)/CLOCKS_PER_SEC;
cout << "Selection sort (size and run time in sec): " << curSize << " " << elapsed << endl;
//quickSort sort
vector<int> quickSortVec = origVector;
//run quickSort sort and measure the run time:
t1 = clock();
//call quickSort sort in the line below:
Quick(quickSortVec);
//quickSortVec vector
t2 = clock();
elapsed = double(t2 - t1)/CLOCKS_PER_SEC;
cout << "QuickSort sort (size and run time in sec): " << curSize << " " << elapsed << endl;
}//for loop
return 0;
}