-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAVL_Sort.c
133 lines (106 loc) · 2.62 KB
/
AVL_Sort.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
#include <stdio.h>
#include <stdlib.h>
struct Node
{
int data;
int height;
struct Node *left;
struct Node *right;
};
int max(int a, int b)
{
return (a > b) ? a : b;
}
int height(struct Node *node)
{
if (node == NULL)
return 0;
return node->height;
}
struct Node *newNode(int val)
{
struct Node *temp = (struct Node *)malloc(sizeof(struct Node));
temp->data = val;
temp->height = 1;
temp->left = NULL;
temp->right = NULL;
return (temp);
}
int getBalanceFactor(struct Node *node)
{
if (node == NULL)
return 0;
return (height(node->left) - height(node->right));
}
struct Node *LeftRotate(struct Node *node)
{
struct Node *temp = node->right;
struct Node *temp2 = temp->left;
temp->left = node;
node->right = temp2;
node->height = max(height(node->left), height(node->right)) + 1;
temp->height = max(height(temp->left), height(temp->right)) + 1;
return temp;
}
struct Node *RightRotate(struct Node *node)
{
struct Node *temp = node->left;
struct Node *temp2 = temp->right;
temp->right = node;
node->left = temp2;
node->height = max(height(node->left), height(node->right)) + 1;
temp->height = max(height(temp->left), height(temp->right)) + 1;
return temp;
}
struct Node *Insert(struct Node *node, int val)
{
if (node == NULL)
return (newNode(val));
if (val < node->data)
node->left = Insert(node->left, val);
else if (val > node->data)
node->right = Insert(node->right, val);
else
return node;
node->height = max(height(node->left), height(node->right)) + 1;
int balance = getBalanceFactor(node);
if (balance > 1 && val < (node->left)->data)
return RightRotate(node);
if (balance < -1 && val > (node->right)->data)
return LeftRotate(node);
if (balance > 1 && val > (node->left)->data)
{
node->left = LeftRotate(node->left);
return RightRotate(node);
}
if (balance < -1 && val < (node->right)->data)
{
node->right = RightRotate(node->right);
return LeftRotate(node);
}
return node;
}
void Inorder(struct Node *node)
{
if (node != NULL)
{
Inorder(node->left);
printf("%d ", node->data);
Inorder(node->right);
}
}
int main()
{
int n;
scanf("%d", &n);
struct Node *root = NULL;
int *arr = malloc(n * sizeof(int));
for (int i = 0; i < n; i++)
scanf("%d", &arr[i]);
root = Insert(root, arr[0]);
for (int i = 1; i < n; i++)
root = Insert(root, arr[i]);
printf("Sorted Array: ");
Inorder(root);
return 0;
}