-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path03 Insert in BST.c
173 lines (82 loc) · 2.27 KB
/
03 Insert in BST.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
#include <stdio.h>
#include <stdlib.h>
struct Node // this is structure for bnary search tree
{
struct Node* lchild;
int data;
struct Node* rchild;
}*root = NULL;
void Insert(int key) // key value to be inserted
{
struct Node* t = root; // set a temp variable pointer to the root
struct Node* r=t, * p; // r will follow t // p for creating a new node
if (root == NULL)
{
p = (struct Node*)malloc(sizeof(struct Node)); // creating a new node in heap memory for inserting new data
p->data = key; // assign the p's data part with key value
p->lchild = p->rchild = NULL; // set left and right as null initilally
root = p; // and again root should point on new node
return;
}
// now take a loop so that we can repeat the steps upto t becomes null so
while (t != NULL)
{
r = t;
if (key < t->data)
t = t->lchild; // move t upon left child
else if (key > t->data)
t = t->rchild; // move t upon right child
else
return;
}
// creating node for insering element
p = (struct Node*)malloc(sizeof(struct Node)); // creating a new node in heap memory for inserting new data
p->data = key; // assign the p's data part with key value
p->lchild = p->rchild = NULL; // set left and right as null
// linking node to existing tree
if (key < r->data) // error here
r->lchild = p; // linking newly created node as left child of tree
else
r->rchild = p;// linking newly created node as right child of tree
}
// function for inorder traversal
void Inorder(struct Node* p)
{
if (p != NULL)
{
Inorder(p->lchild);
printf("%d ", p->data);
Inorder(p->rchild);
}
}
struct Node* Search(int key)
{
struct Node* t = root;
while (t != NULL)
{
if (key == t->data)
return t;
else if (key < t->data)
t = t->lchild;
else
t = t->rchild;
}
return NULL;
}
int main()
{
struct Node* temp;
Insert(10);
Insert(5);
Insert(20);
Insert(8);
Insert(30);
Inorder(root);
printf("\n");
temp = Search(20);
if (temp != NULL)
printf("element %d is found \n", temp->data);
else
printf("Element is not found");
return 0;
}