-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTree.cpp
74 lines (63 loc) · 1.25 KB
/
Tree.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
#include<bits/stdc++.h>
#include<math.h>
using namespace std;
class Node{
public:
char data;
Node* left;
Node* right;
};
Node* createNode(char key){
char l,r;
if(key=='x'){
return NULL;
}
Node* node=new Node();
node->data=key;
node->left=NULL;
node->right=NULL;
cout<<"Enter Left: ";
cin>>l;
node->left=createNode(l);
cout<<"Enter Right: ";
cin>>r;
node->right=createNode(r);
return node;
}
void preOrder(Node* root){
if(root==NULL){
return;
}
cout<<root->data<<" ";
preOrder(root->left);
preOrder(root->right);
}
void inOrder(Node* root){
if(root==NULL){
return;
}
inOrder(root->left);
cout<<root->data<<" ";
inOrder(root->right);
}
void postOrder(Node* root){
if(root==NULL){
return;
}
postOrder(root->left);
postOrder(root->right);
cout<<root->data<<" ";
}
int main(){
char ch;
cout<<"Enter key: ";
cin>>ch;
Node* root=createNode(ch);
cout<<endl<<"PreOrder: ";
preOrder(root);
cout<<endl<<"InOrder: ";
inOrder(root);
cout<<endl<<"PostOrder: ";
postOrder(root);
return 0;
}