aboutsummaryrefslogtreecommitdiff
path: root/lib/algo/avl_tree.c
blob: cc0625422589690ad4342310a082f86e6d25d033 (plain)
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
#include <lib/algo/avl_tree.h>
#include <lib/monad.h>

#include <stddef.h>
#include <stdio.h>

// Get the height of an AVL node
AvlHeight_t get_height(AVLNode *node) {
  if (node == NULL) {
    return 0;
  }
  return node->height;
}

// Get the Maximum Height between two
AvlHeight_t max_height(AvlHeight_t a, AvlHeight_t b) { return (a > b) ? a : b; }

// Get the balance factor of a node
ssize_t get_balance_factor(AVLNode *node) {
  if (node == NULL) {
    return 0;
  }
  return get_height(node->left) - get_height(node->right);
}

// Rotate an AVL node right
AVLNode *right_rotate(AVLNode *parent) {
  AVLNode *child1 = parent->left;
  AVLNode *child2 = child1->right;

  child1->right = parent;
  parent->left = child2;

  parent->height =
      max_height(get_height(parent->left), get_height(parent->right)) + 1;
  child1->height =
      max_height(get_height(child1->left), get_height(child1->right)) + 1;
  return child1;
}

// Rotate an AVL node left
AVLNode *left_rotate(AVLNode *parent) {
  AVLNode *child1 = parent->right;
  AVLNode *child2 = child1->left;

  child1->left = parent;
  parent->right = child2;

  parent->height =
      max_height(get_height(parent->left), get_height(parent->right)) + 1;
  child1->height =
      max_height(get_height(child1->left), get_height(child1->right)) + 1;
  return child1;
}

// Create AVL node
AVLNode *create_avl_node(void *data, AvlComparator compare) {
  AVLNode *node = (AVLNode *)malloc(sizeof(AVLNode));
  if (node == NULL) {
    return NULL;
  }
  node->data = data;
  node->compare = compare;
  node->left = NULL;
  node->right = NULL;
  node->height = 1; // Leaf initially
  return node;
}

// Insert data into AVL tree
Result avl_insert(AVLNode *node, void *data, AvlComparator compare) {
  Result result;
  // 1. Standard BST insertion
  if (node == NULL) {
    return (Result){create_avl_node(data, compare), TRUE};
  }

  if (node->compare(data, node->data)) {
    result = avl_insert(node->left, data, compare);
    if (!result.success) {
      fprintf(stderr, "Failed to insert!");
      return result;
    }
    node->left = (AVLNode *)result.data;
  } else if (node->compare(node->data, data)) {
    result = avl_insert(node->right, data, compare);
    if (!result.success) {
      fprintf(stderr, "Failed to insert!");
      return result;
    }
    node->right = (AVLNode *)result.data;
  } else {
    return (Result){node, FALSE};
  }

  // 2. Update height of the ancestor node
  node->height =
      1 + max_height(get_height(node->left), get_height(node->right));

  ssize_t balance = get_balance_factor(node);

  // 4. If the node becomes unbalanced

  // LeftLeft
  if ((balance > 1) && node->compare(data, node->left->data)) {
    return (Result){right_rotate(node), TRUE};
  }
  // RightRight
  if ((balance < -1) && node->compare(node->right->data, data)) {
    return (Result){left_rotate(node), TRUE};
  }
  // LeftRight
  if ((balance > 1) && node->compare(node->left->data, data)) {
    return (Result){right_rotate(node), TRUE};
  }
  // RightLeft
  if ((balance < -1) && node->compare(data, node->right->data)) {
    return (Result){left_rotate(node), TRUE};
  }
  return (Result){node, TRUE};
}

// In-order traversal print pointer
void print_in_order(AVLNode *root) {
  if (root != NULL) {
    print_in_order(root->left);
    printf("%p ", root->data);
    print_in_order(root->right);
  }
}

// Free avl tree nodes starting at root
void free_avl_tree(AVLNode *root) {
  if (root != NULL) {
    free_avl_tree(root->left);
    free_avl_tree(root->right);
    free(root);
  }
}

// Free avl tree and their data starting at root
void free_avl_tree_nodes(AVLNode *root) {
  if (root != NULL) {
    free_avl_tree_nodes(root->left);
    free_avl_tree_nodes(root->right);
    if (root->data != NULL) {
      free(root->data);
    }
    free(root);
  }
}