-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
43 lines (43 loc) · 949 Bytes
/
main.cpp
File metadata and controls
43 lines (43 loc) · 949 Bytes
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
#include "tree.h"
#include <iostream>
#include <cstring>
using namespace std;
int main(){
tree * main_tree = new tree();
char input[150];
while(true){
cout << "ADD, PRINT, FILE, EXIT, DELETE, 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,"DELETE")){
cout << "Number?"<<endl;
cin.getline(input,150);
main_tree->del(atoi(input), true);
}
else if(!strcmp(input,"PRINT")){
main_tree->print();
}
else if(!strcmp(input,"SEARCH")){
cout << "Number?"<<endl;
cin.getline(input,150);
main_tree->del(atoi(input),false);
}
else if(!strcmp(input,"FILE")){
cout << "File name?"<<endl;
cin.getline(input,150);
main_tree->read_file(input);
}
else if(!strcmp(input,"EXIT")){
break;
}
else{
cout << "Invalid"<<endl;
}
}
delete main_tree;
return 0;
}