-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsorting_algorithms.cpp
More file actions
396 lines (324 loc) · 11.3 KB
/
Copy pathsorting_algorithms.cpp
File metadata and controls
396 lines (324 loc) · 11.3 KB
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
#include <iostream>
#include <time.h>
#include <fstream>
#include <string>
#include <algorithm>
using namespace std;
ofstream file;
int COMPARISON_COUNT, SWAP_COUNT;
void swapElement(int *_array, int _currentPos, int _newPos) {
int _storedValue = _array[_newPos]; //Saves value of the new position
_array[_newPos] = _array[_currentPos]; //Put value into new position
_array[_currentPos] = _storedValue; //Puts saved value into old position
}
void straightInsertionSort(int *_array, int _sizeOfArray) {
int _currentPointer=0, _comparePointer;
for (int follow = 1; follow < _sizeOfArray; follow++) {
COMPARISON_COUNT++;
if (_array[follow] < _array[follow - 1]) {
SWAP_COUNT++;
swapElement(_array, follow, follow - 1);
_currentPointer = follow - 1;
while (_currentPointer > 0) {
COMPARISON_COUNT += 2;
if (_array[_currentPointer] < _array[_currentPointer - 1]) {
SWAP_COUNT++;
swapElement(_array, _currentPointer, _currentPointer - 1);
_currentPointer--;
}
else {
_currentPointer = 0;
}
}
}
}
}
void merge(int *_array, int _left, int _middle, int _right) {
int _leftSubArraySize = _middle - _left + 1, _rightSubArraySize = _right - _middle;
int *_leftSubArray, *_rightSubArray;
_leftSubArray = new int[_leftSubArraySize];
_rightSubArray = new int[_rightSubArraySize];
for (int i = 0; i < _leftSubArraySize; i++) {
_leftSubArray[i] = _array[_left + i];
}
for (int j = 0; j < _rightSubArraySize; j++) {
_rightSubArray[j] = _array[_middle + 1 + j];
}
int _leftCursor=0, _rightCursor=0, _mergedCursor=_left;
while (_leftCursor < _leftSubArraySize && _rightCursor < _rightSubArraySize) {
COMPARISON_COUNT += 2;
if (_leftSubArray[_leftCursor] < _rightSubArray[_rightCursor]) {
_array[_mergedCursor] = _leftSubArray[_leftCursor];
_leftCursor++;
SWAP_COUNT++;
}
else {
_array[_mergedCursor] = _rightSubArray[_rightCursor];
_rightCursor++;
SWAP_COUNT++;
}
_mergedCursor++;
}
while (_leftCursor < _leftSubArraySize) {
COMPARISON_COUNT++;
_array[_mergedCursor] = _leftSubArray[_leftCursor];
_leftCursor++;
_mergedCursor++;
}
while (_rightCursor < _rightSubArraySize) {
COMPARISON_COUNT++;
_array[_mergedCursor] = _rightSubArray[_rightCursor];
_rightCursor++;
_mergedCursor++;
}
}
void mergeSort(int *_array, int _left, int _right, bool withIndexed = false) {
COMPARISON_COUNT++;
if (_left < _right) {
int _middle = (_left + (_right - 1)) / 2;
COMPARISON_COUNT++;
if ((_right - _left) < 40 && withIndexed) {
straightInsertionSort(_array, _right + 1);
}
else {
mergeSort(_array, _left, _middle, withIndexed);
mergeSort(_array, _middle + 1, _right, withIndexed);
}
merge(_array, _left, _middle, _right);
}
}
void quickSort(int *_array, int left, int right, bool withInsertion = false) {
COMPARISON_COUNT++;
if (right - left <= 4 && withInsertion) {
straightInsertionSort(_array, right+1);
}
else {
int i = left, j = right;
int tmp;
int pivot = _array[(left + right) / 2];
while (i <= j) {
while (_array[i] < pivot) {
i++;
COMPARISON_COUNT++;
}
while (_array[j] > pivot) {
j--;
COMPARISON_COUNT++;
}
if (i <= j) {
tmp = _array[i];
_array[i] = _array[j];
_array[j] = tmp;
i++;
j--;
SWAP_COUNT++;
}
COMPARISON_COUNT++;
}
COMPARISON_COUNT += 2;
if (left < j) quickSort(_array, left, j, withInsertion);
if (i < right) quickSort(_array, i, right, withInsertion);
}
}
void heapify(int *_array, int n, int i) {
int largest = i;
int l = 2 * i + 1;
int r = 2 * i + 2;
COMPARISON_COUNT += 3;
if (l < n && _array[l] > _array[largest]) largest = l;
if (r < n && _array[r] > _array[largest]) largest = r;
if (largest != i) {
SWAP_COUNT++;
swap(_array[i], _array[largest]);
heapify(_array, n, largest);
}
}
void heapSort(int *_array, int n) {
for (int i = n / 2 - 1; i >= 0; i--) heapify(_array, n, i);
for (int i = n - 1; i >= 0; i--) {
SWAP_COUNT++;
swap(_array[0], _array[i]);
heapify(_array, i, 0);
}
}
void cycle(int exp) {
int _arraySize, _sizeExp, *_searchThroughArray, *_1to_N, *_N_to1;
_sizeExp = exp;
_arraySize = pow(10, _sizeExp);
//Initializing Arrays
_searchThroughArray = new int[_arraySize]; //Array of Random Integers
_1to_N = new int[_arraySize]; //Ascending array from 1 to n
_N_to1 = new int[_arraySize]; //Descending array from n to 1
// STRAIGHT INSERTION SORT ============================================
cout << "\n\nSTRAIGHT INSERTION SORT ============================================\n";
file << "\n\nSTRAIGHT INSERTION SORT ============================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
straightInsertionSort(_searchThroughArray, _arraySize);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
straightInsertionSort(_1to_N, _arraySize);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
straightInsertionSort(_N_to1, _arraySize);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
// MERGE SORT ==========================================================
cout << "\n\nMERGE SORT ==========================================================\n";
file << "\n\nMERGE SORT ==========================================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_searchThroughArray, 0, _arraySize - 1);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_1to_N, 0, _arraySize - 1);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_N_to1, 0, _arraySize - 1);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
// MERGE SORT WITH INSERTION SORT ======================================
cout << "\n\nMERGE SORT WITH INSERTION SORT ======================================\n";
file << "\n\nMERGE SORT WITH INSERTION SORT ======================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_searchThroughArray, 0, _arraySize - 1, true);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_1to_N, 0, _arraySize - 1, true);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
mergeSort(_N_to1, 0, _arraySize - 1, true);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
// QUICK SORT ==========================================================
cout << "\n\nQUICK SORT ==========================================================\n";
file << "\n\nQUICK SORT ==========================================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_searchThroughArray, 0, _arraySize - 1);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_1to_N, 0, _arraySize - 1);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_N_to1, 0, _arraySize - 1);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
// QUICK SORT WITH INSERTION SORT ======================================
cout << "\n\nQUICK SORT WITH INSERTION SORT ======================================\n";
file << "\n\nQUICK SORT WITH INSERTION SORT ======================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_searchThroughArray, 0, _arraySize - 1, true);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_1to_N, 0, _arraySize - 1, true);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
quickSort(_N_to1, 0, _arraySize - 1, true);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
// HEAP SORT ===========================================================
cout << "\n\nHEAP SORT ===========================================================\n";
file << "\n\nHEAP SORT ===========================================================\n";
for (int i = 0, j = _arraySize; i < _arraySize; i++, j--) {
_searchThroughArray[i] = rand() % 9 + 1 * rand() + rand();
_1to_N[i] = i + 1;
_N_to1[i] = j;
}
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
heapSort(_searchThroughArray, _arraySize);
file << "\n::::: RANDOM :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
heapSort(_1to_N, _arraySize);
file << "\n::::: 1 TO N :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
COMPARISON_COUNT = 0;
SWAP_COUNT = 0;
heapSort(_N_to1, _arraySize);
file << "\n::::: N TO 1 :::::\n"
<< "Comparisons made = " << COMPARISON_COUNT
<< "\nSwaps made = " << SWAP_COUNT;
}
int main() {
srand(time(NULL));
int _sizes[3] = {2,4,6};
for (int i = 0; i < 1; i++) {
string _fileName = to_string(_sizes[i]) + ".txt";
file.open(_fileName);
for (int j = 0; j < 1; j++) {
file << "\n=========================================================================\n RUN "
<< j << "\n=========================================================================\n";
cout << "\nRunning:\n\tSize : " << i << "\n\tRun : " << j << endl;
cycle(_sizes[i]);
}
file.close();
}
return 0;
}