-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.cpp
More file actions
231 lines (219 loc) · 6.12 KB
/
Copy pathmenu.cpp
File metadata and controls
231 lines (219 loc) · 6.12 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
#include <iostream>
#include <string>
#include "menu.hpp"
#include "Tester.hpp"
int menu() {
bool running = true; // Flaga kontrolująca działanie menu
bool amount_menu = false; // Flaga kontrolująca wyświetlanie menu wyboru ilości danych
bool function_menu = false; // Flaga kontrolująca wyświetlanie menu wyboru funkcji
int choice; // Zmienna przechowująca wybór użytkownika
std::string structure; // Zmienna przechowująca wybraną strukturę danych
int amount; // Zmienna przechowująca wybraną ilość danych
std::string function; // Zmienna przechowująca wybraną funkcję do testowania
while (running) {
// Wyświetlanie głównego menu
std::cout << "=====MENU=====" << std::endl;
std::cout << "1. Test everything" << std::endl;
std::cout << "2. Heap" << std::endl;
std::cout << "3. Doubly Linked List" << std::endl;
std::cout << "0. Exit" << std::endl;
std::cout << std::endl;
std::cin >> choice;
switch (choice) {
case 1:
structure = "All";
break;
case 2:
structure = "Heap";
break;
case 3:
structure = "SortedDLL";
break;
case 0:
running = false;
break;
default:
std::cerr << "Incorrect choice" << std::endl;
break;
}
if (0 < choice && choice < 4) { // Jeśli użytkownik wybrał poprawną opcję, przechodzimy do menu wyboru ilości danych
amount_menu = true;
}
while (amount_menu) {
// Wyświetlanie menu wyboru ilości danych
std::cout << "Select data amount:" << std::endl;
std::cout << "1. 1000" << std::endl;
std::cout << "2. 2000" << std::endl;
std::cout << "3. 4000" << std::endl;
std::cout << "4. 8000" << std::endl;
std::cout << "5. 16000" << std::endl;
std::cout << "6. 32000" << std::endl;
std::cout << "7. 64000" << std::endl;
std::cout << "8. 128000" << std::endl;
std::cout << "9. All" << std::endl;
std::cout << "0. Back" << std::endl;
std::cout << std::endl;
std::cin >> choice;
switch (choice) {
case 1:
amount = 1000;
break;
case 2:
amount = 2000;
break;
case 3:
amount = 4000;
break;
case 4:
amount = 8000;
break;
case 5:
amount = 16000;
break;
case 6:
amount = 32000;
break;
case 7:
amount = 64000;
break;
case 8:
amount = 128000;
break;
case 9:
amount = -1; // Używamy -1 jako specjalnej wartości oznaczającej "All"
break;
case 0:
amount_menu = false;
break;
default:
std::cerr << "Incorrect choice" << std::endl;
break;
}
if (0 < choice && choice < 10) { // Jeśli użytkownik wybrał poprawną opcję, przechodzimy do menu wyboru funkcji
amount_menu = false;
function_menu = true;
}
}
while (function_menu) {
// Wyświetlanie menu wyboru funkcji do testowania
std::cout << "Select function:" << std::endl;
std::cout << "1. All" << std::endl;
std::cout << "2. Insert(e,p)" << std::endl;
std::cout << "3. Extract-max()" << std::endl;
std::cout << "4. Peek()" << std::endl;
std::cout << "5. Modify-key(e,p)" << std::endl;
std::cout << "6. Return-size" << std::endl;
std::cout << "0. Back" << std::endl;
std::cout << std::endl;
std::cin >> choice;
switch (choice) {
case 1:
function = "All";
break;
case 2:
function = "insert";
break;
case 3:
function = "extract-max";
break;
case 4:
function = "peek";
break;
case 5:
function = "modify-key";
break;
case 6:
function = "return-size";
break;
case 0:
function_menu = false;
break;
default:
std::cerr << "Incorrect choice" << std::endl;
break;
}
if (0 < choice && choice < 7) { // Jeśli użytkownik wybrał poprawną opcję, przechodzimy do testowania
function_menu = false;
}
}
std::string structures[] = { // Lista dostępnych struktur danych
"Heap",
"SortedDLL"
};
int amounts[] = { // Lista dostępnych ilości danych do testowania
1000,
2000,
4000,
8000,
16000,
32000,
64000,
128000
};
std::string functions[] = { // Lista dostępnych funkcji do testowania
"insert",
"extract-max",
"peek",
"modify-key",
"return-size"
};
if (structure != "" && function != "" && amount != 0) { // Jeśli użytkownik wybrał wszystkie opcje, przechodzimy do testowania
running = false;
if (structure == "All") {
if (amount == -1) {
if (function == "All") {
for (const auto& s : structures) {
for (const auto& a : amounts) {
for (const auto& f : functions) {
test_structure(s, a, f); // Testujemy każdą strukturę danych z każdą ilością danych i każdą funkcją
}
}
}
}
else {
for (const auto& s : structures) {
for (const auto& a : amounts) {
test_structure(s, a, function); // Testujemy każdą strukturę danych z każdą ilością danych i wybraną funkcją
}
}
}
}
else if (function == "All") {
for (const auto& s : structures) {
for (const auto& f : functions) {
test_structure(s, amount, f); // Testujemy każdą strukturę danych z wybraną ilością danych i każdą funkcją
}
}
}
else {
for (const auto& s : structures) {
test_structure(s, amount, function); // Testujemy każdą strukturę danych z wybraną ilością danych i wybraną funkcją
}
}
}
else if (amount == -1) {
if (function == "All") {
for (const auto& a : amounts) {
for (const auto& f : functions) {
test_structure(structure, a, f); // Testujemy wybraną strukturę danych z każdą ilością danych i każdą funkcją
}
}
}
else {
for (const auto& a : amounts) {
test_structure(structure, a, function); // Testujemy wybraną strukturę danych z każdą ilością danych i wybraną funkcją
}
}
}
else if (function == "All") {
for (const auto& f : functions) {
test_structure(structure, amount, f); // Testujemy wybraną strukturę danych z wybraną ilością danych i każdą funkcją
}
}
else {
test_structure(structure, amount, function); // Testujemy wybraną strukturę danych z wybraną ilością danych i wybraną funkcją
}
}
}
return 0;
}