-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAVL.cpp
122 lines (100 loc) · 2.36 KB
/
AVL.cpp
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
#include <bits/stdc++.h>
using namespace std;
struct Node
{
int data;
Node *left, *right;
int height;
};
int get_height(Node *node)
{
if (node == NULL)
return 0;
return node->height;
}
Node *create_node(int e)
{
Node *node = new Node;
node->data = e;
node->left = NULL;
node->right = NULL;
node->height = 1;
return node;
}
int get_bf(Node *node)
{
if (node == NULL)
return 0;
return get_height(node->left) - get_height(node->right);
}
Node *right_rotation(Node *y)
{
Node *x = y->left;
Node *t1 = x->right;
x->right = y;
y->left = t1;
y->height = max(get_height(y->right), get_height(y->left)) + 1;
x->height = max(get_height(x->right), get_height(x->left)) + 1;
return x;
}
Node *left_rotation(Node *x)
{
Node *y = x->right;
Node *t2 = y->left;
y->left = x;
x->right = t2;
y->height = max(get_height(y->right), get_height(y->left)) + 1;
x->height = max(get_height(x->right), get_height(x->left)) + 1;
return y;
}
Node *insert_BST(Node *root, int e)
{
if (root == NULL)
return create_node(e);
if (e > root->data)
root->right = insert_BST(root->right, e);
else if (e < root->data)
root->left = insert_BST(root->left, e);
root->height = 1 + max(get_height(root->right), get_height(root->left));
int bf = get_bf(root);
// left left case
if (bf > 1 and e < root->left->data)
return right_rotation(root);
// right right case
if (bf < -1 and e > root->right->data)
return left_rotation(root);
// right left case
if (bf < -1 and e < root->right->data)
{
root->right = right_rotation(root->right);
return left_rotation(root);
}
// left right case
if (bf > 1 and e > root->left->data)
{
root->left = left_rotation(root->left);
return right_rotation(root);
}
return root;
}
void inorder_traversal(Node *root)
{
if (root != NULL)
{
inorder_traversal(root->left);
cout << root->data << " ";
inorder_traversal(root->right);
}
}
int main()
{
Node *root = NULL;
root = insert_BST(root, 1);
root = insert_BST(root, 2);
root = insert_BST(root, 5);
root = insert_BST(root, 3);
root = insert_BST(root, 4);
root = insert_BST(root, 6);
inorder_traversal(root);
return 0;
}