-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cpp
122 lines (83 loc) · 2.62 KB
/
Main.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
#pragma once
#include "Main.h"
void showUserInterface() {
cout << constants.USER_INTERFACE << endl;
}
bool is_file_exist(string fileName){
ifstream infile(fileName);
return infile.good();
}
int main() {
int input = -1;
double height;
string
edge,
system,
country,
temp;
helper = new DemoHelper();
edges = new EdgesList();
if (!is_file_exist(fileName)){
edges = helper->addDemoStuff(edges);
edges->writeToFile(fileName);
}else {
edges->readFromFile(fileName);
}
while (input !=1991) {
//caseStart = false, caseMiddle = false; // Обнуляем флаги для свитча внизу.
showUserInterface(); // Выводим интерфейс.
if (!cin){
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
}
cin >> input;
switch (input) {
case 1: //вершины по алфавиту
edges->sort(fileName, 1, true);
edges->printList();
break;
case 2: //вершины в обратном алфавитном
edges->sort(fileName, 1, false);
edges->printList();
break;
case 3: //страны по алфавиту
edges->sort(fileName, 2, true);
edges->printList();
break;
case 4: //страны в обратном алфавитном
edges->sort(fileName, 2, false);
edges->printList();
break;
case 5: //по возрастанию высоты
edges->sort(fileName, 3, true);
edges->printList();
break;
case 6: //по убыванию высоты
edges->sort(fileName, 3, false);
edges->printList();
break;
case 7: //обратить текущую последовательность
edges->reverse();
edges->printList();
break;
case 8: //сводка по стране
cout << constants.INPUT_COUNTRY << endl;
cin.ignore();
getline(cin, temp);
edges->printCountry(temp);
break;
case 9: //exit
cout << constants.EXITING << endl;
delete edges;
delete helper;
return EXIT_SUCCESS;
break;
default:
cout << constants.WARNING_NO_RESULT << endl;
break;
}
}
delete edges;
delete helper;
return EXIT_SUCCESS;
}