-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSelf Balancing Tree Insert.cpp
More file actions
51 lines (49 loc) · 957 Bytes
/
Self Balancing Tree Insert.cpp
File metadata and controls
51 lines (49 loc) · 957 Bytes
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
/* Node is defined as :
typedef struct node
{
int val;
struct node* left;
struct node* right;
int ht;
} node; */
node * insert(node * T,int x)
{
if (T == NULL)
{
T = (node*)malloc(sizeof(node));
T->val = x;
T->left = NULL;
T->right = NULL;
}
else if (x > T->val)
{
T->right = insert_hidden(T->right, x);
if (BF_hidden(T) == -2)
{
if (x > T->right->val)
{
T = RR_hidden(T);
}
else
{
T = RL_hidden(T);
}
}
}
else if (x < T->val)
{
T->left = insert_hidden(T->left, x);
if (BF_hidden(T) == 2){
if (x < T->left->val)
{
T = LL_hidden(T);
}
else
{
T = LR_hidden(T);
}
}
}
T->ht = ht_hidden(T);
return(T);
}