-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
432 lines (343 loc) · 11.8 KB
/
Copy pathmain.cpp
File metadata and controls
432 lines (343 loc) · 11.8 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
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
#include <iostream>
#include <algorithm>
#include <sstream>
#include <vector>
using namespace std;
class TreeNode {
public:
string student_name;
string id;
int height;
int balanceFactor;
TreeNode* left;
TreeNode* right;
TreeNode(string x, string name)
: id(x), student_name(name), height(1), balanceFactor(0), left(nullptr), right(nullptr) {}
};
// Simple getheight function from notes
int getHeight(TreeNode* node) {
return (node == nullptr) ? 0 : node->height;
}
// Calculates balance factor
int getBalanceFactor(TreeNode* node) {
return (node == nullptr) ? 0 : getHeight(node->left) - getHeight(node->right);
}
// Right Rotation (LL Case)
TreeNode* rightRotate(TreeNode* root) {
TreeNode* newroot = root->left;
TreeNode* newchild = newroot->right;
newroot->right = root;
root->left = newchild;
root->height = 1 + max(getHeight(root->left), getHeight(root->right));
newroot->height = 1 + max(getHeight(newroot->left), getHeight(newroot->right));
root->balanceFactor = getBalanceFactor(root);
newroot->balanceFactor = getBalanceFactor(newroot);
return newroot;
}
// Left Rotation (RR Case)
TreeNode* leftRotate(TreeNode* root) {
TreeNode* newroot = root->right;
TreeNode* newchild = newroot->left;
newroot->left = root;
root->right = newchild;
root->height = 1 + max(getHeight(root->left), getHeight(root->right));
newroot->height = 1 + max(getHeight(newroot->left), getHeight(newroot->right));
root->balanceFactor = getBalanceFactor(root);
newroot->balanceFactor = getBalanceFactor(newroot);
return newroot;
}
// Insert node with checking balance factor and rebalancing
// From class notes
TreeNode* insert(TreeNode* root, string key, string name) {
if (root == nullptr)
return new TreeNode(key, name);
if (key < root->id)
root->left = insert(root->left, key, name);
else if (key > root->id)
root->right = insert(root->right, key, name);
else
return root; // No duplicates allowed
root->height = 1 + max(getHeight(root->left), getHeight(root->right));
root->balanceFactor = getBalanceFactor(root);
if (root->balanceFactor > 1 && key < root->left->id)
return rightRotate(root);
if (root->balanceFactor < -1 && key > root->right->id)
return leftRotate(root);
if (root->balanceFactor > 1 && key > root->left->id) {
root->left = leftRotate(root->left);
return rightRotate(root);
}
if (root->balanceFactor < -1 && key < root->right->id) {
root->right = rightRotate(root->right);
return leftRotate(root);
}
return root;
}
//Used for finding inorder successor
TreeNode* getMinNode(TreeNode* root) {
while (root->left != nullptr)
root = root->left;
return root;
}
// Delete a node from the AVL Tree and replace with inorder successor
TreeNode* deleteNode(TreeNode* root, string key) {
if (root == nullptr)
return root;
if (key < root->id)
root->left = deleteNode(root->left, key);
else if (key > root->id)
root->right = deleteNode(root->right, key);
else {
if ((root->left == nullptr) || (root->right == nullptr)) {
TreeNode* temp = root->left ? root->left : root->right;
if (temp == nullptr) {
delete root;
return nullptr;
} else {
*root = *temp;
delete temp;
}
}
//Replacing deleted node with inorder successor
else {
TreeNode* temp = getMinNode(root->right);
root->id = temp->id;
root->student_name = temp->student_name;
root->right = deleteNode(root->right, temp->id);
}
}
if (root == nullptr)
return root;
root->height = 1 + max(getHeight(root->left), getHeight(root->right));
root->balanceFactor = getBalanceFactor(root);
if (root->balanceFactor > 1 && getBalanceFactor(root->left) >= 0)
return rightRotate(root);
if (root->balanceFactor > 1 && getBalanceFactor(root->left) < 0) {
root->left = leftRotate(root->left);
return rightRotate(root);
}
if (root->balanceFactor < -1 && getBalanceFactor(root->right) <= 0)
return leftRotate(root);
if (root->balanceFactor < -1 && getBalanceFactor(root->right) > 0) {
root->right = rightRotate(root->right);
return leftRotate(root);
}
return root;
}
// Check for duplicate id string before inserting
bool checkDuplicate(TreeNode* root, string id) {
if (root == nullptr)
return false;
if (root->id == id)
return true;
if (id < root->id)
return checkDuplicate(root->left, id);
return checkDuplicate(root->right, id);
}
// Search ID
TreeNode* searchByID(TreeNode* root, string id) {
if (root == nullptr || root->id == id)
return root;
if (id < root->id)
return searchByID(root->left, id);
return searchByID(root->right, id);
}
// Search NAME
void searchByName(TreeNode* root, const string& name, string& output) {
if (root == nullptr)
return;
if (root->student_name == name) {
output += root->id + "\n";
}
//Done in preorder traversal manner so that output will also be in relative preorder
searchByName(root->left, name, output);
searchByName(root->right, name, output);
}
//Inorder traverses and outputs, with each element seperated by comma
void storeInOrder(TreeNode* root, string& result, bool& nocomma) {
if (root == nullptr) return;
storeInOrder(root->left, result, nocomma);
if (nocomma == false) result += ", ";
result += root->student_name;
nocomma = false;
storeInOrder(root->right, result, nocomma);
}
// Preorder traverses and outputs, with each element seperated by comma
void storePreOrder(TreeNode* root, string& result, bool& nocomma) {
if (root == nullptr) return;
if (nocomma == false) result += ", ";
result += root->student_name;
nocomma = false;
storePreOrder(root->left, result, nocomma);
storePreOrder(root->right, result, nocomma);
}
// Postorder traverses and outputs, with each element seperated by comma
void storePostOrder(TreeNode* root, string& result, bool& nocomma) {
if (root == nullptr) return;
storePostOrder(root->left, result, nocomma);
storePostOrder(root->right, result, nocomma);
if (nocomma == false) result += ", ";
result += root->student_name;
nocomma = false;
}
//Removes N'th node in inorder traversal
TreeNode* removeInorder(TreeNode* root, int N, string& output, int& count) {
//Base case
if (root == nullptr) {
return root;
}
//Starts with left subtree
root->left = removeInorder(root->left, N, output, count);
// Current node
if (count == N) { // Found the N-th node
string idToRemove = root->id;
root = deleteNode(root, idToRemove);
output += "successful\n";
count = -1;
return root;
}
if (count >= 0)
count++;
//Traverse right subtree
if (count >= 0)
root->right = removeInorder(root->right, N, output, count);
return root;
}
//Checks to makes sure name contains only letters, spaces, and hyphens (Ex. Jeane-Claude is true)
bool isValidName(const string& name) {
for (char c : name) {
if (!isalpha(c) && c != ' ' && c != '-')
return false;
}
return true;
}
// Function to check if ID is exactly 8 digits long
bool isValidID(const string& id) {
if (id.length() == 8 && all_of(id.begin(), id.end(), ::isdigit))
return true;
else
return false;
}
//Processes the 9 commands
void menu(TreeNode* root){
int numCommands;
string command;
string finalOutput = "";
cin >> numCommands;
cin.ignore();
for (int i = 0; i < numCommands; i++) {
getline(cin, command);
// Insert Command
if (command.substr(0, 7) == "insert ") {
stringstream ss(command);
string action, name, id;
ss >> action;
ss.ignore();
if (getline(ss, name, '"') && getline(ss, name, '"') && ss >> id) {
// Chacks to make sure valid name entry. (No special characters)
if (!isValidName(name)) {
finalOutput += "unsuccessful\n";
continue;
}
//Check if id string only contains numbers and is 8 digits
if (isValidID(id) == false) {
finalOutput += "unsuccessful\n";
continue;
}
// Checks for duplicate before inserting
if (checkDuplicate(root, id)) {
finalOutput += "unsuccessful\n";
continue;
}
// Valid entry
root = insert(root, id, name);
finalOutput += "successful\n";
} else
finalOutput += "unsuccessful\n";
}
// Search Name or Search ID
else if (command.substr(0, 7) == "search ") {
string query = command.substr(7);
//Search by ID
if (all_of(query.begin(), query.end(), ::isdigit)) {
TreeNode* found = searchByID(root, query);
if (found)
finalOutput += found->student_name + "\n";
else
finalOutput += "unsuccessful\n";
}
// Search by Name
else if (query.front() == '"' && query.back() == '"') {
string name = query.substr(1, query.length() - 2); // Remove quotes
string output = "";
searchByName(root, name, output);
if (output.empty())
finalOutput += "unsuccessful\n";
else
finalOutput += output;
}
else
{
finalOutput += "unsuccessful\n";
}
}
//Print Inorder
else if (command == "printInorder") {
string result = "";
bool first = true;
storeInOrder(root, result, first);
finalOutput += result + "\n";
}
//Print Preorder
else if (command == "printPreorder") {
string result = "";
bool first = true;
storePreOrder(root, result, first);
finalOutput += result + "\n";
}
//Print Postorder
else if (command == "printPostorder") {
string result = "";
bool first = true;
storePostOrder(root, result, first);
finalOutput += result + "\n";
}
//Print Level Count (Height)
else if (command == "printLevelCount") {
finalOutput += to_string(getHeight(root)) + "\n";
}
//Remove Command
else if (command.substr(0, 7) == "remove ") {
string id = command.substr(7);
if (!checkDuplicate(root, id)) {
finalOutput += "unsuccessful\n";
continue;
}
root = deleteNode(root, id);
finalOutput += "successful\n";
}
//Remove Inorder
else if (command.substr(0, 13) == "removeInorder") {
stringstream ss(command);
string action;
int N;
ss >> action >> N;
if (ss.fail()) {
finalOutput += "unsuccessful\n";
continue;
}
int count = 0;
root = removeInorder(root, N, finalOutput, count);
}
// Invalid Command
else {
finalOutput += "unsuccessful\n";
}
}
cout << finalOutput;
}
int main() {
TreeNode* root = nullptr;
menu(root);
return 0;
}