-
Notifications
You must be signed in to change notification settings - Fork 0
/
boundry_elements_tree.c
97 lines (86 loc) · 1.44 KB
/
boundry_elements_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
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
void print_leaf(struct node *root);
void print_boundry_left(struct node *root);
void print_boundry_right(struct node *root);
void print_leaf(struct node *root)
{
if(root)
{
print_leaf(root->left);
if((!root->left) && (!root->right))
{
printf("%d",root->data);
print_leaf(root->right);
}
}
}
void print_boundry_right(struct node *root )
{
if(root)
{
if(root->right)
{
print_boundry_right(root->right);
printf("%d",root->data);
}
else if(root->left)
{
print_boundry_right(root->left);
printf( "%d",root->data);
}
}
}
void print_boundry_left(struct node *root)
{
if(root)
{
if(root->left)
{
printf("%d",root->data);
print_boundry_left(root->left);
}
else if(root->right)
{
printf("%d",root->data);
print_boundry_left(root->right);
}
}
}
void print_boundry(struct node *root)
{
if(root)
{
printf("%d",root->data);
print_boundry_left(root->left);
print_leaf(root->left);
print_leaf(root->right);
print_boundry_right(root->right);
}
}
struct node *newNode(int data)
{
struct node *node=(struct node*)malloc(sizeof(struct node));
node->data=data;
node->right=NULL;
node->left=NULL;
return (node);
}
int main()
{
struct node *root = newNode(10);
root->left = newNode(2);
root->right = newNode(6);
root->left->left = newNode(8);
root->left->right = newNode(-4);
root->right->left = newNode(7);
root->right->right = newNode(5);
print_boundry(root);
return 0;
}