-
Notifications
You must be signed in to change notification settings - Fork 0
/
bubblesort.cpp
383 lines (355 loc) · 13.8 KB
/
bubblesort.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
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
/**
* Purpose: basic sorting algorithms: bubble sort derived step by step
* Author: Emanuele Rizzolo
* Class: 3XIN
* Date: 2023/04/12
* Note:
*/
#include <iostream>
#include <cstdlib>
#include <ctime>
const bool DEBUG = true;
using namespace std;
using type = int;
// global operation counters
size_t comparisons = 0; // n° of comparisons
size_t swaps = 0; // n° of swaps
void showOperations(bool reset = true); // utility to show and maybe reset counters
// comparison function lessThan(lhs, rhs) = lhs < rhs
bool lessThan(const type &lhs, const type &rhs, bool count = true);
bool lessThan(const type &lhs, const type &rhs, bool count /* = true */)
{
if (count) // only in sorting algorithms
++comparisons;
return lhs < rhs;
}
// swap function scambio(lhs, rhs)
void scambio(type &lhs, type &rhs);
void scambio(type &lhs, type &rhs)
{
++swaps;
// type temp = lhs; lhs = rhs; rhs = temp;
swap(lhs, rhs);
}
// utility functions
void JSON(const type a[], int end, int begin = 0, ostream &out = cout); // output su out in formato JSON
void iota(type a[], type value, int end, int begin = 0); // fill with increasing values
void reverse(type a[], int end, int begin = 0); // rovescia l'ordine degli elementi
void fillRandom(type a[], int end, int begin = 0, type min = 0, type max = RAND_MAX); // a[i] = random in [min, max]
void copia(const type a[], type c[], int end, int begin = 0); // copy (a range of) an array
// sorting functions
bool isOrdered(const type a[], int end, int begin = 0); // function to start with
void sortFirst(type a[], int end, int begin = 0); // first step
void sortRecursive(type a[], int end, int begin = 0); // full sorting, recursive
void sortIterative(type a[], int end, int begin = 0); // full sorting, iterative
void sortOptimizedBool(type a[], int end, int begin = 0); // full sorting, iterative + boolean optimization
void sortOptimizedLast(type a[], int end, int begin = 0); // full sorting, iterative + optimization on end
void sortOptimizedBoth(type a[], int end, int begin = 0); // full sorting, iterative + optimization on end and begin
const int NUM_ALGORITHMS = 6; // # of algorithms
// basic sorting test
void test(type v[], int dim, int which);
int main(int argc, char *argv[])
{
srand(time(nullptr));
int dim = 20;
type v[dim], a[dim];
cout << "Test with random array" << endl;
fillRandom(a, dim, 0, 0, dim * 2); // probably with duplicates
JSON(a, dim);
cout << " ordinato: " << (isOrdered(a, dim) ? "si' " : "no ");
showOperations();
for (int algo = 1; algo <= NUM_ALGORITHMS; ++algo)
{
copia(a, v, dim); // make a copy
test(v, dim, algo);
}
cout << endl
<< "Test with best case array" << endl;
iota(a, 0, dim);
JSON(a, dim);
cout << " ordinato: " << (isOrdered(a, dim) ? "si' " : "no ");
showOperations();
for (int algo = 1; algo <= NUM_ALGORITHMS; ++algo)
{
copia(a, v, dim); // make a copy
test(v, dim, algo);
}
cout << endl
<< "Test with worst case array" << endl;
reverse(a, dim);
JSON(a, dim);
cout << " ordinato: " << (isOrdered(a, dim) ? "si' " : "no ");
showOperations();
for (int algo = 1; algo <= NUM_ALGORITHMS; ++algo)
{
copia(a, v, dim); // make a copy
test(v, dim, algo);
}
return 0;
}
/// @brief Verifica ordinamento (crescente) elementi da begin a end escluso: [begin, end)
/// @param a l'array con i valori di cui verificare l'ordinamento
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
/// @return true se gli elementi sono ordinati, false altrimenti
bool isOrdered(const type a[], int end, int begin /* = 0 */)
{
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1], false)) // something's wrong here
return false;
}
return true;
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details This is the first incomplete step: the idea is simply
/// trying to fix an anomaly when we find it
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortFirst(type a[], int end, int begin /* = 0 */)
{
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
}
}
// here last position is maximum element,
// but the others might still be out of order !!!
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details This is the first complete sorting algorithm, recursive
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortRecursive(type a[], int end, int begin /* = 0 */)
{
if (end - begin > 1) // at least two element
{
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
}
}
// here last position is maximum element,
// but the others might still be out of order !!!
sortRecursive(a, end - 1, begin); // Let's sort the rest
}
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details This is the same algorithm but we changed the tail recursion into an iteration
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortIterative(type a[], int end, int begin /* = 0 */)
{
// if becomes a while ...
while (end - begin > 1) // at least two element
{
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
}
}
--end; // Let's start again with end decreased
}
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details sortIterative with boolean optimization
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortOptimizedBool(type a[], int end, int begin /* = 0 */)
{
bool swapped = true; // need true to enter the while
while (end - begin > 1 && swapped) // at least two element
{
swapped = false; // no swaps so far
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
swapped = true; // at least one swap
}
}
--end; // Let's start again with end decreased
}
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details sortIterative with last swap optimization
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortOptimizedLast(type a[], int end, int begin /* = 0 */)
{
while (end - begin > 1) // at least two element
{
int lastSwap = 0;
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
lastSwap = i; // remember last swap
}
}
end = lastSwap; // Let's start again with end decreased
}
}
/// @brief Ordinamento (crescente, cioe' tale che a[i] >= a[j] per i >= j)
/// elementi da begin a end escluso: [begin, end)
/// @details sortIterative with last and first swap optimization
/// @param a l'array con i valori da ordinare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void sortOptimizedBoth(type a[], int end, int begin /* = 0 */)
{
int limit = begin; // remember array start limit
while (end - begin > 1) // at least two element
{
int lastSwap = 0, firstChanged = end;
for (int i = begin + 1; i < end; ++i)
{
if (lessThan(a[i], a[i - 1]))
{
scambio(a[i], a[i - 1]); // something's wrong here: let's fix it
lastSwap = i; // remember last swap
if (firstChanged > i)
{
firstChanged = i - 1; // remember first element changed
}
}
}
end = lastSwap; // Let's start again with end decreased
begin = firstChanged == limit ? firstChanged : (firstChanged - 1); // starting with the first possibly changed test
}
}
void sortIt(type v[], int dim, int which)
{
switch (which)
{
case 1:
cout << "After sortFirst: ";
sortFirst(v, dim);
break;
case 2:
cout << "After sortRecursive: ";
sortRecursive(v, dim);
break;
case 3:
cout << "After sortIterative: ";
sortIterative(v, dim);
break;
case 4:
cout << "After sortOptimizedBool: ";
sortOptimizedBool(v, dim);
break;
case 5:
cout << "After sortOptimizedLast: ";
sortOptimizedLast(v, dim);
break;
case 6:
cout << "After sortOptimizedBoth: ";
sortOptimizedBoth(v, dim);
break;
}
JSON(v, dim);
cout << " ordinato: " << (isOrdered(v, dim) ? "si', " : "no, ");
showOperations();
}
void test(type v[], int dim, int which)
{
sortIt(v, dim, which);
}
/// @brief Output su out in formato JSON da begin a end escluso: [begin, end)
/// @param a the array to output
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
/// @param out the output stream to be used
void JSON(const type a[], int end, int begin /* = 0 */, ostream &out /* = cout */)
{
out << "[ ";
for (int i = begin; i < end; ++i)
{
if (i != begin)
{
out << ", ";
}
out << a[i];
}
out << " ]";
}
/// @brief Imposta gli elementi in [begin, end) con valori crescenti a partire da value
/// @param a the array to change
/// @param value the starting value, incremented with ++value
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void iota(type a[], type value, int end, int begin /* = 0 */)
{
for (int i = begin; i < end; ++i)
{
a[i] = value;
++value;
}
}
/// @brief Rovescia gli elementi da begin a end escluso: [begin, end)
/// @param a l'array con i valori da rovesciare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void reverse(type a[], int end, int begin /* = 0 */)
{
for (int inf = begin, sup = end - 1; inf < sup; inf++, sup--)
{
swap(a[inf], a[sup]);
}
}
/// #brief Inizializzazione con valore casuale degli elementi da begin a end escluso: [begin, end)
/// @param a l'array da inizializzare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
/// @param min valore casuale minimo
/// @param max valore casuale massimo
void fillRandom(type a[], int end, int begin /* = 0 */, type min /* = 0 */, type max /* = RAND_MAX */)
{
for (int i = begin; i < end; i++)
{
a[i] = min + rand() % (max - min + 1);
}
}
/// #brief Copia gli elementi da begin a end escluso: [begin, end)
/// @param a l'array da cui copiare
/// @param c l'array da inizializzare
/// @param end fine (esclusa) della scansione: a[end] non viene elaborato
/// @param begin inizio (incluso) della scansione: a[begin] e' il primo elemento elaborato
void copia(const type a[], type c[], int end, int begin /* = 0 */)
{
for (int i = begin; i < end; i++)
{
c[i] = a[i];
}
}
/// @brief Shows operation counters if DEBUG
/// @param reset whether to reset counters or not
void showOperations(bool reset /* = true */)
{
if (DEBUG)
{
cout << "comparisons: " << comparisons << ", swaps: " << swaps << endl;
}
if (reset)
{
comparisons = swaps = 0;
}
}