forked from siddharth25pandey/CPP-Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbin_tree.cpp
More file actions
264 lines (229 loc) · 6.07 KB
/
bin_tree.cpp
File metadata and controls
264 lines (229 loc) · 6.07 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
#include<iostream.h>
#include <cstring>
using namespace std;
typedef struct node
{
int data;
struct node *lf, *rt;
}NODE;
class BST
{
NODE *root;
public: BST()
{
root = NULL;
}
void createBinary();
void addNewNode();
NODE* search(NODE *root, int key);
void deletenode(int key);
void display(NODE *cn);
NODE* getroot()
{
return root;
}
};
void BST :: createBinary()
{
int n;
cout << "\n Enter the number of nodes: ";
cin >> n;
bool flag=0; //0 for left and 1 for right
NODE *newnode, *cn, *parent;
for(int i=0; i<n; i++)
{
newnode = new NODE;
newnode->lf = newnode->rt = NULL;
cout << "\n Enter the data: ";
cin >> newnode->data;
if(root == NULL)
root = newnode;
else{
cn = root;
while(cn != NULL)
{
parent = cn;
if(newnode->data < cn->data) //go to left subtree
{
flag = 0;
cn = cn->lf;
}
else //go to right subtree
{
flag = 1;
cn = cn->rt;
}
}
if(flag == 0)
parent->lf = newnode;
else
parent->rt = newnode;
}//end outer else
}//end for
}
void BST :: addNewNode()
{
if(root == NULL)
cout << "\n The tree is not created. ";
else
{
bool flag=0; //0 for left and 1 for right
NODE *newnode, *cn, *parent;
newnode = new NODE;
newnode->lf = newnode->rt = NULL;
cout << "\n Enter the data: ";
cin >> newnode->data;
cn = root;
while(cn != NULL)
{
parent = cn;
if(newnode->data < cn->data)
{
flag = 0;
cn = cn->lf;
}
else
{
flag = 1;
cn = cn->rt;
}
}
if(flag == 0)
parent->lf = newnode;
else
parent->rt = newnode;
}
}
NODE* BST :: search(NODE *root, int key)
{
if(root == NULL || root->data == key)
return root; // Key is greater than cn's data
if (root->data < key)
return search(root->rt, key); // Key is smaller than cn's data
return search(root->lf, key);
}
void BST :: deletenode(int key)
{
bool flag=0;
int data1;
NODE *cn, *parent, *temp;
cn = root;
while(cn != NULL)
{
if(key < cn->data)
{
parent = cn;
cn = cn->lf;
flag = 0;
}
else if(key > cn->data)
{
parent = cn;
cn = cn->rt;
flag = 0;
}
else
{
flag = 1;
break;
}
}
if(flag == 1)
{
if(cn->lf == NULL && cn->rt == NULL) //case 1
{
if(cn == root)
root = NULL;
else if(cn->data < parent->data)
parent->lf = NULL;
else
parent->rt = NULL;
delete cn;
}
else if(cn->lf == NULL && cn->rt != NULL) //case 2
{
if(cn == root)
root = cn->rt;
else if(cn->data < parent->data)
parent->lf = cn->rt;
else
parent->rt = cn->rt;
delete cn;
}
else if(cn->rt == NULL && cn->lf != NULL) //case 2
{
if(cn == root)
root = cn->lf;
else if(cn->data < parent->data)
parent->lf = cn->lf;
else
parent->rt = cn->lf;
delete cn;
}
else if(cn->lf != NULL && cn->rt != NULL) //case 3
{
temp = cn->lf;
while(temp->rt != NULL)
temp = temp->rt;
data1 = temp->data;
deletenode(temp->data);
cn->data = data1;
}
else
cout << "\n Node is not present. ";
}
}
void BST :: display(NODE *cn)
{
if(cn != NULL)
{
display(cn->lf);
cout << "\n " << cn->data << "\n";
display(cn->rt);
}
}
int main()
{
BST obj;
NODE *temp;
int choice;
int key;
do
{
cout << "\n ---------------------------------------- ";
cout << "\n Enter your choice "
"\n 1. Create Dictionary "
"\n 2. Add new node "
"\n 3. Search for a node "
"\n 4. Delete a node "
"\n 5. Display the tree "
"\n 6. Exit "
"\n Here : ";
cin >> choice;
switch(choice)
{
case 1: obj.createBinary();
break;
case 2: obj.addNewNode();
break;
case 3: cout << "\n Enter the data to be searched : ";
cin >> key;
temp = obj.search(obj.getroot(), key);
if(temp != NULL)
cout << "\n" << temp->data << "\n";
else
cout << "\n Data not found! " << "\n";
break;
case 4: cout << "\n Enter the data to be deleted : ";
cin >> key;
obj.deletenode(key);
cout << "\n The data is deleted. ";
break;
case 5: obj.display(obj.getroot());
break;
default : cout << "\n ----------------- END ----------------- ";
break;
}
}while(choice < 10);
return 0;
}