-
Notifications
You must be signed in to change notification settings - Fork 0
/
fletchTests.cpp
178 lines (146 loc) · 4.98 KB
/
fletchTests.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
#include <cstring>
#include <iostream>
#include <string>
#include <vector>
#include "QS.h"
// --------- HELPER FUNCTIONS ---------
template<class T>
std::ostream& operator<<(std::ostream& os, const std::vector<T>& array) {
bool print_space = false;
for (const T& elem : array) {
if (print_space) {
os << ' ';
}
print_space = true;
os << elem;
}
return os;
}
template<class T>
void noisy_medianOfThree(std::vector<T>& array, int left, int right) {
int index = medianOfThree(array, left, right);
std::cout << std::endl;
std::cout << "medianOfThree(array, " << left << ", " << right << ") = " << index << std::endl;
std::cout << "array = " << array << std::endl;
}
template<class T>
void noisy_partition(std::vector<T>& array, int left, int right) {
int index = partition(array, left, right);
std::cout << std::endl;
std::cout << "partition(array, " << left << ", " << right << ") = " << index << std::endl;
std::cout << "array = " << array << std::endl;
}
template<class T>
void noisy_sort(std::vector<T>& array) {
std::cout << "array = " << array << std::endl;
std::cout << "Sorting array..." << std::endl;
std::cout << "array = " << array << std::endl;
}
// --------- TEST FUNCTIONS ---------
// Checks that medianOfThree works
void test1() {
std::cout << "--- Test 1 Output ---\n" << std::endl;
// 0 1 2 3 4 5 6 7 8 9
std::vector<int> array{ -3, 4, 4, 8, -4, 4, 2, -6, 6, 5 };
std::cout << "array = " << array << std::endl;
noisy_medianOfThree(array, 0, 9);
noisy_medianOfThree(array, 1, 6);
noisy_medianOfThree(array, 2, 7);
noisy_medianOfThree(array, 6, 8);
noisy_medianOfThree(array, 7, 9);
noisy_medianOfThree(array, 2, 4);
}
// Checks that partition works with sorted data
void test2() {
std::cout << "--- Test 2 Output ---\n" << std::endl;
std::vector<int> array{1, 2, 3, 4, 5, 9, 13, 16, 16, 17};
std::cout << "array = " << array << std::endl;
noisy_partition(array, 0, 4);
noisy_partition(array, 3, 9);
noisy_partition(array, 0, 9);
}
// Check that partition works with reversed data
void test3() {
std::cout << "--- Test 3 Output ---\n" << std::endl;
std::vector<std::string> array{"velvet", "pillow", "pillow", "ocean", "mountain", "coffee", "cascade", "bubble", "blossom", "bicycle"};
std::cout << "array = " << array << std::endl;
noisy_partition(array, 0, 4);
noisy_partition(array, 3, 9);
noisy_partition(array, 0, 9);
}
// Checks that partition works with shuffled data
void test4() {
std::cout << "--- Test 4 output ---\n" << std::endl;
std::vector<int> array{ 6, 14, 19, 5, 7, 1, 18, 16, 8, 16 };
std::cout << "array = " << array << std::endl;
noisy_partition(array, 0, 4);
noisy_partition(array, 3, 9);
noisy_partition(array, 0, 9);
}
// Checks that sort works with sorted data
void test5() {
std::cout << "--- Test 5 output ---\n" << std::endl;
std::vector<int> array{ 1, 7, 8, 9, 11, 11, 15, 16, 18, 20 };
noisy_sort(array);
}
// Checks that sort works with reversed data
void test6() {
std::cout << "--- Test 6 output ---\n" << std::endl;
std::vector<int> array{ 20, 14, 8, 8, 6, 5, 5, 5, 4, 4 };
noisy_sort(array);
}
// Checks that sort works with shuffled data
void test7() {
std::cout << "--- Test 7 output ---\n" << std::endl;
std::vector<std::string> array{ "whisper", "coffee", "kaleidoscope", "coffee", "firefly", "marshmallow", "cascade", "bicycle", "aurora", "pillow" };
noisy_sort(array);
}
int main(int argc, char* argv[]) {
// If no arguments provided, throw error
if (argc <= 1) {
std::cerr << "You must specify which tests you would like to run."
<< "Your options are 1, 2, 3, 4, 5, 6, 7, and all."
<< "You can specify several options by separating them by spaces." << std::endl;
return 1;
}
// If multiple arguments provided, run tests
for (int i = 1; i < argc; i++) {
if (std::strcmp(argv[i], "1") == 0) {
test1();
}
else if (std::strcmp(argv[i], "2") == 0) {
test2();
}
else if (std::strcmp(argv[i], "3") == 0) {
test3();
}
else if (std::strcmp(argv[i], "4") == 0) {
test4();
}
else if (std::strcmp(argv[i], "5") == 0) {
test5();
}
else if (std::strcmp(argv[i], "6") == 0) {
test6();
}
else if (std::strcmp(argv[i], "7") == 0) {
test7();
}
else if (std::strcmp(argv[i], "all") == 0) {
test1();
test2();
test3();
test4();
test5();
test6();
test7();
}
else {
std::cerr << argv[i] << " isn't a valid option (1, 2, 3, 4, 5, 6, 7, or all)" << std::endl;
}
if (i + 1 != argc) {
std::cout << std::endl;
}
}
return 0;
}