-
Notifications
You must be signed in to change notification settings - Fork 361
/
Copy pathsorting.cpp
116 lines (102 loc) · 3.38 KB
/
sorting.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
#include <random>
#include <limits>
#include "third_party/catch.hpp"
#include "algorithm/sorting/bubble_sort.hpp"
#include "algorithm/sorting/bucket_sort.hpp"
#include "algorithm/sorting/comb_sort.hpp"
#include "algorithm/sorting/counting_sort.hpp"
#include "algorithm/sorting/heap_sort.hpp"
#include "algorithm/sorting/insertion_sort.hpp"
#include "algorithm/sorting/merge_sort.hpp"
#include "algorithm/sorting/quick_sort.hpp"
#include "algorithm/sorting/radix_sort.hpp"
#include "algorithm/sorting/selection_sort.hpp"
#include "algorithm/sorting/shell_sort.hpp"
// Prototypes
int generate_random_int(int, int);
vector<int> generate_unsorted_vector(int max_size = 1000);
// Pointer to function
using sorting_function = void(*)(vector<int>&, int, bool);
// Constant value
const int TIMES_TO_RUN = 20;
TEST_CASE("Sort in ascending order", "[sorting]") {
// Sorting algorithms
vector<sorting_function> sorting_functions = {
bubble_sort,
bucket_sort,
comb_sort,
counting_sort,
heap_sort,
insertion_sort,
merge_sort,
quick_sort,
radix_sort, // This test reveals that the radix sort is broken
selection_sort,
shell_sort
};
vector<int> original, algo_sorted, std_sorted;
int times_to_run = TIMES_TO_RUN;
while (times_to_run--) {
original = algo_sorted = std_sorted = generate_unsorted_vector();
std::sort(std_sorted.begin(), std_sorted.end());
// Run tests
for (auto sorting_algo : sorting_functions) {
sorting_algo(algo_sorted, 1, false);
REQUIRE(algo_sorted == std_sorted);
algo_sorted = original;
}
}
}
TEST_CASE("Sort in descending order", "[sorting]") {
// Sorting algorithms
vector<sorting_function> sorting_functions = {
bubble_sort,
bucket_sort,
comb_sort,
counting_sort,
heap_sort,
insertion_sort,
merge_sort,
quick_sort,
radix_sort, // This test reveals that the radix sort is broken
selection_sort,
shell_sort
};
vector<int> original, algo_sorted, std_sorted;
int times_to_run = TIMES_TO_RUN;
while (times_to_run--) {
original = algo_sorted = std_sorted = generate_unsorted_vector();
std::sort(std_sorted.rbegin(), std_sorted.rend());
// Run tests
for (auto sorting_algo : sorting_functions) {
sorting_algo(algo_sorted, -1, false);
REQUIRE(algo_sorted == std_sorted);
algo_sorted = original;
}
}
}
/*
generate_unsorted_vector
------------------------
Creates a vector of random size and populates it with random integers.
Default for max_size is set in function declaration.
*/
vector<int> generate_unsorted_vector(int max_size) {
vector<int> v;
auto vector_size = (size_t) generate_random_int(1, max_size);
v.reserve(vector_size);
for (int i = 0; i < (int) vector_size; i++) {
v.push_back(generate_random_int(std::numeric_limits<short>::min(), std::numeric_limits<short>::max()));
}
return v;
}
/*
generate_random_int
-------------------
Generates a random int between min and max.
*/
int generate_random_int(int min, int max) {
std::default_random_engine generator(std::random_device{}());
std::uniform_int_distribution<> int_range(min, max);
return int_range(generator);
}