-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary_tree_template.cpp
More file actions
408 lines (340 loc) · 6.54 KB
/
binary_tree_template.cpp
File metadata and controls
408 lines (340 loc) · 6.54 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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
#include <iostream>
#include <stdlib.h>
#include "linear_data_structures.h"
using namespace std;
template <typename T>
struct NODE
{
int data;
struct NODE<T>* left;
struct NODE<T>* right;
NODE<T>(T val)
{
data = val;
left = NULL;
right = NULL;
}
};
template <typename T>
class BinaryTree
{
public:
NODE<T>* root;
BinaryTree<T>()
{
root = NULL;
}
void Insert(T );
void DeleteTree(NODE<T>* );
void PreOrderTraversal(NODE<T>*);
void InOrderTraversal(NODE<T>*);
void PostOrderTraversal(NODE<T>*);
void LevelTraversal(NODE<T>*);
void Deepest_right_node(NODE<T>** , NODE<T>** , bool* );
void DeleteNode(T );
int Size(NODE<T>*);
int Height(NODE<T>*);
NODE<T>* Search(T , NODE<T>**);
};
/* Inserting the node at the first position
available in the level traversal. This
keeps the tree close to complete, with
minimum levels for given no of nodes. */
template <typename T>
void BinaryTree<T>::Insert(T new_data)
{
if (root == NULL)
{
root = new NODE<T>(new_data);
return;
}
struct NODE<T>* new_node = new NODE<T>(new_data);
Queue<struct NODE<T>*> Q;
Q.Enqueue(root);
while (not Q.is_empty())
{
struct NODE<T>* node = Q.Dequeue();
if (node->left != NULL)
{
Q.Enqueue(node->left);
}
else
{
node->left = new_node;
return;
}
if (node->right != NULL)
{
Q.Enqueue(node->right);
}
else
{
node->right = new_node;
return;
}
}
}
template <typename T>
void BinaryTree<T>::DeleteTree(NODE<T>* root)
{
if (root == NULL)
{
return;
}
DeleteTree(root->left);
DeleteTree(root->right);
free(root);
}
template <typename T>
void BinaryTree<T>::InOrderTraversal(NODE<T>* root)
{
if (root == NULL)
{
return;
}
InOrderTraversal(root->left);
cout << root->data << " " ;
InOrderTraversal(root->right);
}
template <typename T>
void BinaryTree<T>::PreOrderTraversal(NODE<T>* root)
{
if (root == NULL)
{
return;
}
cout << root->data << " " ;
PreOrderTraversal(root->left);
PreOrderTraversal(root->right);
}
template <typename T>
void BinaryTree<T>::PostOrderTraversal(NODE<T>* root)
{
if (root == NULL)
{
return;
}
PostOrderTraversal(root->left);
PostOrderTraversal(root->right);
cout << root->data << " " ;
}
template <typename T>
void BinaryTree<T>::LevelTraversal(NODE<T>* root)
{
if (root == NULL)
{
return;
}
Queue<struct NODE<T>*> Q;
Q.Enqueue(root);
while (not Q.is_empty())
{
struct NODE<T>* node = Q.Dequeue();
cout << node->data << " " ;
if (node->left != NULL)
{
Q.Enqueue(node->left);
}
if (node->right != NULL)
{
Q.Enqueue(node->right);
}
}
}
template <typename T>
int BinaryTree<T>::Size(NODE<T>* root)
{
if (root == NULL)
{
return 0;
}
return 1+Size(root->left)+Size(root->right);
}
template <typename T>
int BinaryTree<T>::Height(NODE<T>* root)
{
if (root == NULL)
{
return 0;
}
int height_left = Height(root->left);
int height_right = Height(root->right);
if (height_left > height_right)
{
return 1+height_left;
}
else
{
return 1+height_right;
}
}
template <typename T>
void BinaryTree<T>::Deepest_right_node(NODE<T>** DeepestNode, NODE<T>** ParentNode, bool* left)
{
if (Size(root) == 0)
{
cout << "Tree is empty!" << endl;
return;
}
Queue<struct NODE<T>*> Q;
Q.Enqueue(root);
while (not Q.is_empty())
{
struct NODE<T>* node = Q.Dequeue();
if (node->left != NULL)
{
*ParentNode = node;
*left = true;
Q.Enqueue(node->left);
}
if (node->right != NULL)
{
*ParentNode = node;
*left = false;
Q.Enqueue(node->right);
}
if (node->left == NULL and node->right == NULL)
{
*DeepestNode = node;
}
}
}
template <typename T>
NODE<T>* BinaryTree<T>::Search(T new_data, NODE<T>** parent_node)
{
if (Size(root) == 0)
{
cout << "Tree is empty!" << endl;
NODE<T>* temp = NULL;
return temp;
}
Queue<struct NODE<T>*> Q;
Q.Enqueue(root);
Queue<struct NODE<T>*> ParentQ;
NODE<T>* tmp = NULL;
ParentQ.Enqueue(tmp);
while (not Q.is_empty())
{
struct NODE<T>* node = Q.Dequeue();
*parent_node = ParentQ.Dequeue();
if (node->data == new_data)
{
return node;
}
if (node->left != NULL)
{
ParentQ.Enqueue(node);
Q.Enqueue(node->left);
}
if (node->right != NULL)
{
ParentQ.Enqueue(node);
Q.Enqueue(node->right);
}
}
cout << "Element not found in Tree!" << endl;
return tmp;
}
/* Delete the node and replace it with the
Deepest rightmost node */
template <typename T>
void BinaryTree<T>::DeleteNode(T data)
{
if (Size(root) == 0)
{
cout << "Tree is empty!" << endl;
return;
}
NODE<T>* search_parent_node = NULL;
NODE<T>* search_node = Search(data, &search_parent_node);
if (search_node == NULL)
{
cout << "Can not delete data which does not exists!" << endl;
return;
}
NODE<T>* deepest_node = NULL;
NODE<T>* parent_node = NULL;
bool left=true;
Deepest_right_node(&deepest_node, &parent_node, &left);
if (parent_node == NULL)
{
root = NULL;
cout << "Now the tree is empty!" << endl;
return;
}
int search_data = search_node->data;
int deepest_data = deepest_node->data;
search_node->data = deepest_data;
deepest_node->data = search_data;
if (left)
{
parent_node->left = NULL;
}
else
{
parent_node->right = NULL;
}
}
int main()
{
BinaryTree<int> BT;
BT.Insert(1);
BT.Insert(2);
BT.Insert(3);
BT.Insert(4);
BT.Insert(5);
BT.Insert(6);
BT.LevelTraversal(BT.root);
cout << endl;
BT.InOrderTraversal(BT.root);
cout << endl;
BT.PreOrderTraversal(BT.root);
cout << endl;
BT.PostOrderTraversal(BT.root);
cout << endl;
int size = BT.Size(BT.root);
cout << size << endl;
int height = BT.Height(BT.root);
cout << height << endl;
NODE<int>* parent_node = NULL;
int search_data = 2;
NODE<int>* node = BT.Search(search_data, &parent_node);
if (node != NULL)
{
cout << "Element found! " << search_data << endl;
if (parent_node == NULL)
{
cout << "Element is the root node, no parent" << endl;
}
else
{
cout << "Element's parent node is " << parent_node->data << endl;
if (parent_node->left->data == search_data)
{
cout << "Element's right sibling is " << parent_node->right->data << endl;
}
else
{
cout << "Element's left sibling is " << parent_node->left->data << endl;
}
}
if (node->left == NULL and node->right == NULL)
{
cout << "Element has no children!" << endl;
}
if (node->left != NULL)
{
cout << "left child is: " << node->left->data << ", ";
}
if (node->right != NULL)
{
cout << "right child is: " << node->right->data << " ";
}
cout << endl;
}
BT.DeleteNode(2);
BT.LevelTraversal(BT.root);
cout << endl;
BT.DeleteTree(BT.root);
return 0;
}