-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
165 lines (126 loc) · 3.46 KB
/
main.cpp
File metadata and controls
165 lines (126 loc) · 3.46 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
#include "AVLTree.h"
#include <sstream>
/* Note:
1. You will have to comment main() when unit testing your code because catch uses its own main().
2. You will submit this main.cpp file and any header files you have on Gradescope.
*/
bool isValidID(string& id) {
// Only valid if ID is 8 numerical digits
if (id.length() != 8) {
return false;
}
for (char c : id) {
if (!isdigit(c)) {
return false;
}
}
return true;
}
bool isValidName(string& name) {
// Only valid if character is alphabetical or whitespace
if (name.front() != '"' || name.back() != '"') {
return false;
}
for (int i = 1; i < name.size() - 1; i++) {
char c = name[i];
if (!isalpha(c) && c != ' ') {
return false;
}
}
return true;
}
int main() {
AVLTree tree;
// Read line to determine number of input lines read
int numLines;
cin >> numLines;
string firstLine;
getline(cin, firstLine);
// Loop for N amount of lines before terminating
while (numLines > 0) {
string line;
getline(cin, line);
stringstream ss(line);
string command, arg1, arg2;
// Read the command
ss >> command;
if (command == "insert") {
// Ignore whitespace after command
ss >> ws;
// Read arg1 and arg2
ss >> arg1;
ss >> arg2;
if (!isValidName(arg1) || !isValidID(arg2)) {
cout << "unsuccessful" << endl;
}
else {
string name = arg1;
string id = arg2;
name.pop_back();
name.erase(0,1);
tree.insert(name, id);
}
}
else if (command == "remove") {
ss >> arg1;
if (!isValidID(arg1)) {
cout << "unsuccessful" << endl;
}
else {
string id = arg1;
tree.remove(id);
}
}
// search ID, search NAME
else if (command == "search") {
// Read arg1
ss >> arg1;
if (isValidID(arg1)) {
tree.searchID(arg1);
}
else if (isValidName(arg1)) {
string name = arg1;
name.pop_back();
name.erase(0, 1);
tree.searchName(name);
}
else {
cout << "unsuccessful" << endl;
}
}
// printInorder
else if (command == "printInorder") {
tree.printInorder();
}
// printPreorder
else if (command == "printPreorder") {
tree.printPreorder();
}
// printPostorder
else if (command == "printPostorder") {
tree.printPostorder();
}
// printLevelCount
else if (command == "printLevelCount") {
tree.printLevelCount();
}
// removeInorder N
else if (command == "removeInorder") {
// Read arg1
ss >> arg1;
try {
int n = stoi(arg1);
tree.removeInorder(n);
}
catch (exception &err) {
cout << "unsuccessful" << endl;
}
}
// If command is not valid
else {
cout << "unsuccessful" << endl;
}
numLines--;
}
return 0;
}