-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbinary_tree.cpp
More file actions
220 lines (183 loc) · 4.25 KB
/
binary_tree.cpp
File metadata and controls
220 lines (183 loc) · 4.25 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
#include<iostream>
#include<string>
using namespace std;
struct Trunk
{
Trunk *prev;
string str;
Trunk(Trunk *prev, string str)
{
this->prev = prev;
this->str = str;
}
};
// Helper function to print branches of the binary tree
void showTrunks(Trunk *p)
{
if (p == NULL)
return;
showTrunks(p->prev);
cout << p->str;
}
class node
{
public:
int info;
node *left;
node *right;
node(int val)
{
info = val;
left = NULL;
right = NULL;
}
};
node* parent(node* curr, node* p, node* par)
{
if(curr == NULL)
return NULL;
if (curr == p)
{
return par;
}
else
{
node *t = NULL;
t = parent(curr->left, p, curr);
if(t!= NULL)
return t;
else
{
t = parent(curr->right, p, curr);
return t;
}
}
}
node* sibling(node* root, node* p)
{
node* par = parent(root, p, root);
if (par->left == p)
return par->right;
else
return par->left;
}
void deleteTree(node* leaf)
{
if (leaf != NULL)
{
deleteTree(leaf->left);
deleteTree(leaf->right);
delete leaf;
}
}
int getLevel(node *ptr,int val,int level)
{
if (ptr == NULL)
return 0;
if (ptr->info == val)
return level;
return getLevel(ptr->left, val, level+1) |
getLevel(ptr->right, val, level+1);
}
int maxDepth(node* node)
{
if (node == NULL)
return -1;
else
{
/* compute the depth of each subtree */
int lDepth = maxDepth(node->left);
int rDepth = maxDepth(node->right);
/* use the larger one */
if (lDepth > rDepth)
return(lDepth + 1);
else return(rDepth + 1);
}
}
void preOrder(node *n)
{
if(n == NULL)
return;
cout<<n->info<<"\t";
preOrder(n->left);
preOrder(n->right);
}
void inOrder(node *n)
{
if(n == NULL)
return;
inOrder(n->left);
cout<<n->info<<"\t";
inOrder(n->right);
}
void postOrder(node *n)
{
if(n == NULL)
return;
postOrder(n->left);
postOrder(n->right);
cout<<n->info<<"\t";
}
// Recursive function to print binary tree
// It uses inorder traversal
void printTree(node *root, Trunk *prev, bool isRight)
{
if (root == NULL)
return;
string prev_str = " ";
Trunk *trunk = new Trunk(prev, prev_str);
printTree(root->right, trunk, true);
if (!prev)
trunk->str = "---";
else if (isRight)
{
trunk->str = ".---";
prev_str = " |";
}
else
{
trunk->str = "`---";
prev->str = prev_str;
}
showTrunks(trunk);
cout << root->info << endl;
if (prev)
prev->str = prev_str;
trunk->str = " |";
printTree(root->left, trunk, false);
}
int main(int argc, const char** argv) {
node *root = new node(5);
root->left = new node(2);
root->right = new node(7);
root->right->left = new node(3);
root->right->right = new node(9);
root->left->left = new node(6);
root->left->left->right = new node(1);
printTree(root, NULL, false);
// Find Parent
node *n = parent(root, root->right, root);
cout<<"Parent is: "<<n->info<<endl;
// Find sibling
node *sib = sibling(root, root->right->left); //sibling of 3 (which is 9)
cout<<"Sibling of 3 is: "<<sib->info<<endl;
// Level of a node
cout<<"Level of 1: "<<getLevel(root, 1, 0)<<endl;
// Depth of the tree
cout<<"Depth of the tree: "<<maxDepth(root)<<endl;
deleteTree(root);
// Tree Traversals (PreOrder, InOrder, PostOrder) [Start]
node *order = NULL;
order = new node(1);
order->left = new node(2);
order->right = new node(3);
order->left->left = new node(4);
//printTree(root, NULL, false);
preOrder(order);
cout<<endl;
inOrder(order);
cout<<endl;
postOrder(order);
// Tree Traversals (PreOrder, InOrder, PostOrder) [End]
return 0;
}