-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
40 lines (39 loc) · 830 Bytes
/
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
#include "tree.h"
#include <iostream>
#include <cstring>
#include <cstdlib>
using namespace std;
int main(){
char input[150];
tree *main_tree = new tree();
while(true){
cout << "ADD PRINT DELETE QUIT SEARCH"<<endl;
cin.getline(input, 150);
if(!strcmp(input,"ADD")){
cout << "Number?"<<endl;
cin.getline(input,150);
main_tree->insert(new node(atoi(input)));
}
else if(!strcmp(input, "PRINT")){
main_tree->print();
}
else if(!strcmp(input, "DELETE")){
cout << "Number?"<<endl;
cin.getline(input,150);
main_tree->del(atoi(input));
}
else if(!strcmp(input, "QUIT")){
delete main_tree;
return 0;
}
else if(!strcmp(input,"SEARCH")){
cout << "Number?"<<endl;
cin.getline(input,150);
main_tree->search(atoi(input));
}
else{
cout << "Invalid"<<endl;
}
}
return 0;
}