-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
257 lines (230 loc) · 8.24 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
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
#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <ctime>
#include <float.h>
#include <functional>
#include "bubble_sort.cpp"
#include "insertion_sort.cpp"
#include "spin_the_bottle_sort.cpp"
#include "shell_sort.cpp"
#include "annealing_sort.cpp"
#include "random_generation_sample.cpp"
using namespace std;
struct timing
{
int n;
double seconds;
};
// get a vector of ints in 1, 2, ... , n shuffled randomly
vector<int> get_random_shuffled_int_vector(int n)
{
vector<int> vec = vector<int>(n);
for(int i = 0; i < n; i++)
vec[i] = (i + 1);
shuffle_vector(vec);
// almost_sorted_vector(vec); // Use this line to generate almost sorted array
return vec;
}
// run and time sort for vector with n elements. return vector of timings with sizes and seconds
timing time_sort(int n, int reps, function<void(vector<int>&)> sort_algorithm)
{
double total_time = 0.0;
vector<int> rvec;
for(int i = 0; i < reps; i++) // For each input size, do "reps" times runs.
{
rvec = get_random_shuffled_int_vector(n);
double min_timing = DBL_MAX;
for (int j = 0; j < 3; j++) { // For each input vector, do 3 runs and take the smallest timing.
clock_t c_start = clock();
sort_algorithm(rvec);
clock_t c_end = clock();
double curr_timing = (float)(c_end - c_start) / CLOCKS_PER_SEC;
if (curr_timing < min_timing) {
min_timing = curr_timing;
}
}
total_time += min_timing;
}
timing t;
t.n = n;
t.seconds = (float)total_time/reps; // Average minimum running time of each size
return t;
}
timing time_shell_sort(int n, int reps, const std::vector<int>& gaps)
{
double total_time = 0.0;
vector<int> rvec;
for(int i = 0; i < reps; i++)
{
rvec = get_random_shuffled_int_vector(n);
double min_timing = DBL_MAX;
for (int j = 0; j < 3; j++) { // For each input vector, do 3 runs and take the smallest timing.
clock_t c_start = clock();
shell_sort(rvec, gaps);
clock_t c_end = clock();
double curr_timing = (float)(c_end - c_start) / CLOCKS_PER_SEC;
if (curr_timing < min_timing) {
min_timing = curr_timing;
}
}
total_time += min_timing;
}
timing t;
t.n = n;
t.seconds = (float)total_time/reps;
return t;
}
timing time_annealing_sort(int n, int reps, const std::vector<int>& temps, const std::vector<int>& repetitions)
{
double total_time = 0.0;
vector<int> rvec;
for(int i = 0; i < reps; i++)
{
rvec = get_random_shuffled_int_vector(n);
double min_timing = DBL_MAX;
for (int j = 0; j < 3; j++) { // For each input vector, do 3 runs and take the smallest timing.
clock_t c_start = clock();
annealing_sort(rvec, temps, repetitions);
clock_t c_end = clock();
double curr_timing = (float)(c_end - c_start) / CLOCKS_PER_SEC;
if (curr_timing < min_timing) {
min_timing = curr_timing;
}
}
total_time += min_timing;
}
timing t;
t.n = n;
t.seconds = (float)total_time/reps;
return t;
}
// create/truncate a file with chosen filename. insert csv header "funcname,n,seconds"
void create_empty_timings_file(string filename)
{
ofstream f;
f.open(filename, ios::trunc);
f << "funcname,n,seconds\n";
f.close();
}
// append timings data in csv format to a file with no header. (header should be created first)
void add_timings_to_file(string funcname, timing t, string filename)
{
ofstream f;
f.open(filename, ios::app);
f << funcname << "," << t.n << "," << t.seconds << "\n";
f.close();
}
int main()
{
timing t;
const vector<int>& gaps1{1601, 801, 300, 132, 57, 10, 1};
const vector<int>& gaps2{600, 280, 75, 25, 8, 1};
const vector<int>& gaps3{148, 99, 50, 1};
const vector<int>& gaps4{256, 128, 64, 32, 16, 8, 4, 2, 1};
const vector<int>& gaps5{200, 190, 180, 170, 160, 150};
const vector<int>& gaps6{887, 510, 377, 233, 144, 89, 55, 34, 21, 13, 8, 5, 3, 2, 2, 1};
const vector<int>& temps1{1600, 800, 400, 200, 100, 50, 25, 0};
const vector<int>& temps2{1000, 800, 600, 400, 200, 0};
const vector<int>& temps3{1024, 512, 216, 128, 64, 32, 16, 8, 4, 2, 1, 0};
const vector<int>& temps4{1597, 987, 610, 377, 233, 144, 89, 55, 34, 21, 13, 8, 5, 3, 2, 1};
const vector<int>& temps5{256, 64, 16, 4, 0};
const vector<int>& temps6{1000, 850, 700, 550, 400, 250, 0};
const vector<int>& repetitions1{5, 5, 5, 5, 5, 5, 5, 0};
const vector<int>& repetitions2{2, 2, 2, 2, 2, 0};
const vector<int>& repetitions3{7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 0};
const vector<int>& repetitions4{2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,0};
const vector<int>& repetitions5{5, 5, 5, 5, 0};
const vector<int>& repetitions6{3, 3, 3, 3, 3, 3, 0};
create_empty_timings_file("shell1.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps1);
add_timings_to_file("shell-sort(gaps1)", t, "shell1.csv");
}
create_empty_timings_file("shell2.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps2);
add_timings_to_file("shell-sort(gaps2)", t, "shell2.csv");
}
create_empty_timings_file("shell3.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps3);
add_timings_to_file("shell-sort(gaps3)", t, "shell3.csv");
}
create_empty_timings_file("shell4.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps4);
add_timings_to_file("shell-sort(gaps4)", t, "shell4.csv");
}
create_empty_timings_file("shell5.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps5);
add_timings_to_file("shell-sort(gaps5)", t, "shell5.csv");
}
create_empty_timings_file("shell6.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_shell_sort(n, 3, gaps6);
add_timings_to_file("shell-sort(gaps6)", t, "shell6.csv");
}
create_empty_timings_file("annealing1.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps1, repetitions1);
add_timings_to_file("annealing-sort(temps1, reps1", t, "annealing1.csv");
}
create_empty_timings_file("annealing2.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps2, repetitions2);
add_timings_to_file("annealing-sort(temps2, reps2", t, "annealing2.csv");
}
create_empty_timings_file("annealing3.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps3, repetitions3);
add_timings_to_file("annealing-sort(temps3, reps3", t, "annealing3.csv");
}
create_empty_timings_file("annealing4.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps4, repetitions4);
add_timings_to_file("annealing-sort(temps4, reps4", t, "annealing4.csv");
}
create_empty_timings_file("annealing5.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps5, repetitions5);
add_timings_to_file("annealing-sort(temps5, reps5", t, "annealing5.csv");
}
create_empty_timings_file("annealing6.csv");
for(int n = 10; n <= 1000000; n *= 10)
{
t = time_annealing_sort(n, 3, temps6, repetitions6);
add_timings_to_file("annealing-sort(temps6, reps6", t, "annealing6.csv");
}
create_empty_timings_file("insertion.csv");
for(int n = 10; n <= 100000; n *= 10)
{
t = time_sort(n, 3, insertion_sort);
add_timings_to_file("insertion-sort", t, "insertion.csv");
}
create_empty_timings_file("bubble.csv");
for(int n = 10; n <= 100000; n *= 10)
{
t = time_sort(n, 3, bubble_sort);
add_timings_to_file("bubble-sort", t, "bubble.csv");
}
create_empty_timings_file("spin.csv");
for(int n = 10; n <= 10000; n *= 10)
{
t = time_sort(n, 3, spin_the_bottle_sort);
add_timings_to_file("spin-the-bottle-sort", t, "spin.csv");
}
}