-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
355 lines (301 loc) Β· 8.55 KB
/
main.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
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
#include <stdio.h>
#include "operations.h"
#include "stack.h"
struct Node *root = NULL;
// Creation of binary tree
void createTree(){
struct Node *p, *temp;
int value;
struct Queue q;
createQ(&q , 100); // creation of queue
printf("Enter the value for Root Node : ");
scanf("%d" , &value);
root = createNode(value); // root node creation
enqueue(&q , root);
while(!isEmpty(&q)){
p = dequeue(&q);
printf("Enter the left child for %d : " , p->data);
scanf("%d" , &value);
if(value != -1){
temp = createNode(value);
p->lChild = temp;
enqueue(&q ,temp);
}
printf("Enter the right child for %d : " , p->data);
scanf("%d" , &value);
if(value != -1){
temp = createNode(value);
p->rChild = temp;
enqueue(&q , temp);
}
}
}
void preOrder(struct Node *p){
if(p){
printf("%d" , p->data);
preOrder(p->lChild);
preOrder(p->rChild);
}
}
void inOrder(struct Node *p){
if(p){
inOrder(p->lChild);
printf("%d" , p->data);
inOrder(p->rChild);
}
}
void postOrder(struct Node *p){
if(p){
postOrder(p->lChild);
postOrder(p->rChild);
printf("%d" , p->data);
}
}
void IPreOrder(struct Node *t) {
struct Stack st;
createStack(&st , 100);
// While there are nodes to process
while (t != NULL || !isStackEmpty(&st)) {
if (t != NULL) {
printf("%d ", t->data); // Visit the node (Pre-order)
push(&st, t); // Push the current node to the stack
t = t->lChild; // Move to the left child
} else {
t = pop(&st); // Pop the node from the stack
t = t->rChild; // Move to the right child
}
}
}
void IInOrder(struct Node *t){
struct Stack st;
createStack(&st , 100);
while(t != NULL || !isStackEmpty(&st)){
if(t){
push(&st , t);
t = t-> lChild;
}else{
t = pop(&st);
printf("%d" , t->data);
t = t->rChild;
}
}
}
void insert(){
struct Node *temp , *newNode , *parent;
int value;
printf("Enter the value to insert : ");
scanf("%d" , &value);
newNode = createNode(value);
if(root == NULL){
root = newNode;
}else{
temp = root;
while(temp!=NULL){
if(value > temp->data){
parent = temp;
temp = temp->rChild;
}else{
parent = temp;
temp = temp->lChild;
}
}
if(value > parent->data){
parent->rChild = newNode;
}else{
parent->lChild = newNode;
}
}
}
void IPostOrder(struct Node *t){
struct Stack st;
createStack(&st, 100); // Initialize stack with size 100
long int temp;
while (t != NULL || !isStackEmpty(&st)) {
if (t != NULL) {
push(&st, (long int)t); // Push node's address to the stack
t = t->lChild; // Move to the left child
} else {
temp = pop(&st); // Pop the top element from the stack
if (temp > 0) { // If it's a positive value (node address)
push(&st, -temp); // Mark the node as processed by pushing a negative value
t = ((struct Node *)temp)->rChild; // Move to the right child
} else { // Negative value means the node has been processed
printf("%d ", ((struct Node *)(-temp))->data); // Print the node's data
t = NULL; // Set t to NULL to continue popping from the stack
}
}
}
}
void LevelOrder(struct Node *p){
struct Queue q;
createQ(&q , 100);
printf("%d " , p->data);
enqueue(&q , p);
while(!isEmpty(&q)){
p = dequeue(&q);
if(p->lChild){
printf("%d " , p->lChild->data);
enqueue(&q , p->lChild);
}
if(p->rChild){
printf("%d " , p->rChild->data);
enqueue(&q , p->rChild);
}
}
}
// count nodes having degree(2)
int countNodesDegreeTwo(struct Node *p){
if(p){
if(p->lChild && p->rChild){
return countNodesDegreeTwo(p->lChild) + countNodesDegreeTwo(p->rChild) + 1;
}else{
return countNodesDegreeTwo(p->lChild) + countNodesDegreeTwo(p->rChild);
}
}
return 0;
}
// count nodes having degree (1,2)
int countInternal(struct Node *p){
if(p){
if( p->lChild || p->rChild){
return countInternal(p->lChild) + countInternal(p->rChild) + 1;
}else{
return countInternal(p->lChild) + countInternal(p->rChild);
}
}
return 0;
}
// count nodes having degree 1
int countDegreeOne(struct Node *p){
if(p){
if(p->lChild != NULL ^ p->rChild != NULL){
return countDegreeOne(p->lChild) + countDegreeOne(p->rChild) + 1;
}else{
return countDegreeOne(p->lChild) + countDegreeOne(p->rChild);
}
}
return 0;
}
// count of external nodes
int countExternal(struct Node *p){
if(p){
if(!p->rChild && !p->lChild){
return 1;
}else{
return countExternal(p->lChild) + countExternal(p->rChild);
}
}
return 0;
}
int height(struct Node *p){
int x , y;
if(p){
x = height(p->rChild);
y = height(p->lChild);
if(x > y){
return x + 1;
}else {
return y + 1;
}
}
return -1;
}
int level(struct Node *p){
int x , y;
if(p){
x = level(p->rChild);
y = level(p->lChild);
if(x > y){
return x + 1;
}else {
return y + 1;
}
}
return 0;
}
int main()
{
int choice;
while (1) {
printf("\n========== Menu ==========\n");
printf("1. Create Binary Tree\n");
printf("2. Iterative PreOrder Traversal\n");
printf("3. Recursive PreOrder Traversal\n");
printf("4. Iterative InOrder Traversal\n");
printf("5. Recursive InOrder Traversal\n");
printf("6. Iterative PostOrder Traversal\n");
printf("7. Recursive PostOrder Traversal\n");
printf("8. Level Order Traversal\n");
printf("9. Count Nodes\n");
printf("10. Count of External Nodes\n");
printf("11. Count of Nodes Having Degree 2\n");
printf("12. Count of Nodes Having Degree 1 or 2\n");
printf("13. Count of Nodes Having Degree 1\n");
printf("14. Height of the Tree\n");
printf("15. Level of the Tree\n");
printf("16. Exit\n");
printf("===========================\n");
printf("Enter your choice: ");
scanf("%d", &choice);
switch (choice) {
case 1:
createTree();
break;
case 2:
printf("\nIterative PreOrder: ");
IPreOrder(root);
break;
case 3:
printf("\nRecursive PreOrder: ");
preOrder(root);
break;
case 4:
printf("\nIterative InOrder: ");
IInOrder(root);
break;
case 5:
printf("\nRecursive InOrder: ");
inOrder(root);
break;
case 6:
printf("\nIterative PostOrder: ");
IPostOrder(root);
break;
case 7:
printf("\nRecursive PostOrder: ");
postOrder(root);
break;
case 8:
printf("\nLevel Order Traversal: ");
LevelOrder(root);
break;
case 9:
printf("\nCount of Nodes: %d", count(root));
break;
case 10:
printf("\nCount of External Nodes (Leaf Nodes): %d", countExternal(root));
break;
case 11:
printf("\nCount of Nodes Having Degree 2 (Two Children): %d", countNodesDegreeTwo(root));
break;
case 12:
printf("\nCount of Nodes Having Degree 1 or 2: %d", countInternal(root));
break;
case 13:
printf("\nCount of Nodes Having Degree 1 (One Child): %d", countDegreeOne(root));
break;
case 14:
printf("\nHeight of the Tree: %d", height(root));
break;
case 15:
printf("\nLevel of the Tree (root level): %d", level(root));
break;
case 16:
printf("Exiting...\n");
return 0;
default:
printf("Invalid choice! Please select a valid option.\n");
}
}
return 0;
}