-
Notifications
You must be signed in to change notification settings - Fork 5
/
binary_search_tree.c
302 lines (252 loc) · 5.02 KB
/
binary_search_tree.c
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
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <assert.h>
typedef struct BINARY_SEARCH_TREE
{
int data;
struct BINARY_SEARCH_TREE *left;
struct BINARY_SEARCH_TREE *right;
} Node;
/**
* Creates a new node.
*
* @internal
*
* @param int data Data for node
*
* @return Node
*/
Node *get_Node(int data)
{
Node *temp = (Node *) malloc(sizeof(Node));
temp->data = data;
temp->left = NULL;
temp->right = NULL;
return temp;
}
/**
* Insert new node to a tree.
*
* @param Node tree Search tree
* @param int data Data to insert
*
* @return void
*/
void insert(Node **tree, int data)
{
if (!*tree) {
*tree = get_Node(data);
return;
}
if (data < (*tree)->data) {
//left subtree
insert(&(*tree)->left, data);
} else {
//right subtree
insert(&(*tree)->right, data);
}
}
/**
* Prints data using inorder traversal of a tree.
*
* @param Node tree Search tree
*
* @return void
*/
void inorder(Node **tree)
{
if (!*tree) {
return;
}
inorder(&(*tree)->left);
printf("%d ", (*tree)->data);
inorder(&(*tree)->right);
}
/**
* Prints data using preorder traversal of a tree.
*
* @param Node tree Search tree
*
* @return void
*/
void preorder(Node **n)
{
if (!*n) {
return;
}
printf("%d ", (*n)->data);
preorder(&(*n)->left);
preorder(&(*n)->right);
}
/**
* Prints data using postorder traversal of a tree.
*
* @param Node tree Search tree
*
* @return void
*/
void postorder(Node **n)
{
if (!*n) {
return;
}
postorder(&(*n)->left);
postorder(&(*n)->right);
printf("%d ", (*n)->data);
}
/**
* Finds a node with given data from tree.
*
* @param Node tree Search tree
* @param int data Data to search
*
* @return Node|Null
*/
Node *find(Node **tree, int data)
{
static Node *item = NULL;
if (!*tree) {
return NULL;
}
if (!item) {
item = (Node *) malloc(sizeof(Node));
}
if (data == (*tree)->data) {
item = *tree;
} else if (data < (*tree)->data) {
find(&((*tree)->left), data);
} else {
find(&((*tree)->right), data);
}
return item;
}
/**
* Find node with minimum data from given tree.
*
* @param Node root Root of a tree
*
* @return Node
*/
Node *find_minimum(Node *root)
{
Node *subtree = root;
while (subtree->left) {
subtree = subtree->left;
}
return subtree;
}
/**
* Find node with maximum data from given tree.
*
* @param Node root Root of a tree
*
* @return Node
*/
Node *find_maximum(Node *root)
{
Node *subtree = root;
while (subtree->right) {
subtree = subtree->right;
}
return subtree;
}
/**
* Checks if a node is a leaf node.
*
* @param Node n Node to check
*
* @return bool
*/
bool is_leaf_node(Node *n)
{
return n->left == NULL && n->right == NULL;
}
/**
* Checks if a node is root node of a given tree.
*
* @param Node tree Search tree
* @param Node n Node to check against root node
*
* @return bool
*/
bool is_root_node(Node **tree, Node *n)
{
return (*tree) == n;
}
/**
* Deletes a node with given data from tree
* and returns a new root.
*
* @param Node root Root of a tree
* @param int data Data to be deleted
*
* @return Node New node of a tree
*/
Node *delete(Node *root, int data)
{
if (!root) {
return root;
}
if (data < root->data) {
//left
root->left = delete(root->left, data);
} else if (data > root->data) {
//right
root->right = delete(root->right, data);
} else {
//equal
if (is_leaf_node(root)) {
free(root);
root = NULL;
return NULL;
}
if (root->left && root->right) {
//has both child
Node *min = find_minimum(root->right);
root->data = min->data;
root->right = delete(root->right, min->data);
} else if (root->left) {
//left child
Node *temp = root->left;
free(root->left);
root->left = NULL;
return temp;
} else if (root->right) {
//right child
Node *temp = root->right;
free(root->right);
root->right = NULL;
return temp;
}
}
return root;
}
int main()
{
Node *n = NULL;
int total, input, del;
printf("%s", "How many data? ");
scanf("%d", &total);
printf("Enter %d numbers\n", total);
for (int i = 0; i < total; i++) {
scanf("%d", &input);
insert(&n, input);
}
printf("%s", "Inorder: ");
inorder(&n);
printf("%s", "\nPreorder: ");
preorder(&n);
printf("%s", "\nPostorder: ");
postorder(&n);
printf("%s", "\n\nDelete? ");
scanf("%d", &del);
Node *found = find(&n, del);
assert(del == found->data);
Node *new_root = delete(n, del);
assert(new_root->data == n->data);
printf("\n%s", "After Deletion: ");
preorder(&n);
free(n);
return 0;
}