-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary search tree by ma am.cpp
135 lines (123 loc) · 2.23 KB
/
binary search tree by ma am.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
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
#include <iostream>
using namespace std;
typedef struct TreeNode
{
int data;
struct TreeNode *left, *right;
}*treeptr;
treeptr root, ptr;
void makeRoot(int itm)
{
root=new TreeNode;
root->data=itm;
root->left=NULL;
root->right=NULL;
}
void makeNode(int itm)
{
ptr=root;
treeptr np= new TreeNode;
np->data=itm;
np->left=NULL;
np->right=NULL;
while(ptr!=NULL)
{
if(ptr->data==itm)
{
cout<<"Enter data again or 0 for exit: ";
cin>>itm;
if(itm==0)
{
break;
}
else
{
np->data=itm;
ptr=root;
}
}
else if(itm<ptr->data)
{
if(ptr->left==NULL)
{
ptr->left=np;
break;
}
else
{
ptr=ptr->left;
}
}
else
{
if(ptr->right==NULL)
{
ptr->right=np;
break;
}
else
{
ptr=ptr->right;
}
}
}
}
void inorder(treeptr p)
{
if(p!=NULL)
{
inorder(p->left);
cout<<p->data<<" ";
inorder(p->right);
}
}
void preorder(treeptr p)
{
if(p!=NULL)
{
cout<<p->data<<" ";
preorder(p->left);
preorder(p->right);
}
}
void postorder(treeptr p)
{
if(p!=NULL)
{
postorder(p->left);
postorder(p->right);
cout<<p->data<<" ";
}
}
int main()
{
int x;
root=NULL;
while(1)
{
cout<<"Enter data or 0 for exit: "<<endl;
cin>>x;
if(x==0)
break;
else
{
if(root==NULL)
{
makeRoot(x);
}
else
{
makeNode(x);
}
}
}
cout<<"Inorder: ";
inorder(root);
cout<<endl;
cout<<"Preorder: ";
preorder(root);
cout<<endl;
cout<<"Postorder: ";
postorder(root);
cout<<endl;
}