forked from kaloi-noggins/trabson-eda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathavltree.c
337 lines (285 loc) · 7.1 KB
/
avltree.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <string.h>
#include "avltree.h"
typedef struct node {
char *key;
int value;
struct node *left;
struct node *right;
} node;
struct avltree {
node *root;
};
static void node_show(node *n) {
printf("( ");
if(n) {
if(n->left) {
node_show(n->left);
printf(" ");
}
// Lembrar de colocar o valor!
printf("%s:%d ", n->key, n->value);
if(n->right) {
node_show(n->right);
printf(" ");
}
}
printf(")");
}
void avltree_show(avltree *t) {
node_show(t->root);
printf("\n");
}
avltree *avltree_create(void) {
avltree *result = malloc(sizeof(avltree));
result->root = NULL;
return result;
}
int node_height(node *n) {
if(n) {
int l = 1 + node_height(n->left);
int r = 1 + node_height(n->right);
if(l > r) {
return l;
} else {
return r;
}
}
return 0;
}
int avltree_height(avltree *t) {
return node_height(t->root);
}
/*
Arruma uma sub-árvore com fator -1, rotacionando pela esquerda.
a b
/ \ / \
x b a c
/ \ => / \ / \
y c x y z w
/ \
z w
*/
static node *left_rotate(node *a) {
printf("Rotação à esquerda!\n");
node *b = a->right;
node *y = b->left;
b->left = a;
a->right = y;
return b;
}
/*
Arruma uma sub-árvore com fator 1, rotacionando pela direita.
a b
/ \ / \
b x c a
/ \ => / \ / \
c y z w y x
/ \
z w
*/
static node *right_rotate(node *a) {
printf("Rotação à direita!\n");
node *b = a->left;
node *y = b->right;
b->right = a;
a->left = y;
return b;
}
static int node_factor(node *n) {
return node_height(n->left) - node_height(n->right);
}
static node *node_insert(node *n, const char *k, int v) {
if(n) {
// Compara a chave atual com a desejada
int val = strcmp(n->key, k);
if(val == 0) {
// Atualizamos o valor!
n->value = v;
return n;
}
if(val > 0) {
n->left = node_insert(n->left, k, v);
} else {
n->right = node_insert(n->right, k, v);
}
// Verificamos os fatores!
int factor = node_factor(n);
if(factor < -1) {
// Pendendo pra direita!
if(strcmp(k, n->right->key) > 0) {
// Caso A: right right!
n = left_rotate(n);
} else {
// Caso B: right left!
n->right = right_rotate(n->right);
n = left_rotate(n);
}
} else if(factor > 1) {
// Pendendo pra esquerda!
if(strcmp(k, n->left->key) > 0) {
// Caso C: left right!
n->left = left_rotate(n->left);
n = right_rotate(n);
} else {
// Caso D: left left!
n = right_rotate(n);
}
}
return n;
} else {
// Cria o novo nó
n = malloc(sizeof(node));
// Precisamos também copiar a chave
n->key = malloc(strlen(k) + 1);
strcpy(n->key, k);
n->value = v;
n->left = NULL;
n->right = NULL;
return n;
}
}
void avltree_insert(avltree *t, const char *k, int v) {
t->root = node_insert(t->root, k, v);
}
static int node_lookup(node *n, const char *k) {
if(n != NULL) {
int val = strcmp(n->key, k);
if(val == 0) {
return n->value;
}
if(val > 0) {
return node_lookup(n->left, k);
} else {
return node_lookup(n->right, k);
}
}
return 0;
}
int avltree_lookup(avltree *t, const char *k) {
return node_lookup(t->root, k);
}
static void node_delete(node *n) {
if(n) {
node_delete(n->left);
node_delete(n->right);
free(n->key);
free(n);
}
}
static node *node_find_min(node *n) {
// Procura o valor mais à esquerda aqui!
while(n->left) {
n = n->left;
}
return n;
}
static node *node_remove(node *n, const char *k, int *v) {
if(n != NULL) {
int val = strcmp(n->key, k);
if(val == 0) {
// Esse é o nó que queremos remover!
if(v != NULL) {
// Informa o valor de retorno!
*v = n->value;
}
// Temos menos de dois filhos?
if(n->left == NULL || n->right == NULL) {
// Se tivermos algo a esquerda, aux será o que estiver na esquerda
// Se não tivermos, aux será o que estiver na direita
// Como entramos aqui se ao menos um dos dois for NULL, aux também pode
node *aux = n->left != NULL
? n->left
: n->right;
if(aux == NULL) {
// Não tinha nenhum filho! Liberamos n
node_delete(n);
n = NULL;
} else {
// Libera a chave atual!
free(n->key);
// Copia os dados de aux para n, e libera aux (o filho em questão)
*n = *aux;
free(aux);
}
} else {
// Procura o menor item na direita!
node *aux = node_find_min(n->right);
// Atualiza o nosso nó
free(n->key);
n->key = malloc(strlen(aux->key) + 1);
strcpy(n->key, aux->key);
// Atualiza a direita, removendo o menor item de lá
n->right = node_remove(n->right, aux->key, &n->value);
}
} else if(val > 0) {
n->left = node_remove(n->left, k, v);
} else if(val < 0) {
n->right = node_remove(n->right, k, v);
}
// Se não foi ESSE nó que removemos, podemos precisar balancear!
if(n != NULL) {
// Podemos ter desbalanceado, então verificamos os fatores!
int factor = node_height(n->left) - node_height(n->right);
if(factor < -1) {
// Pendendo pra direita!
if(node_factor(n->right) <= 0) {
// Caso A: right right!
n = left_rotate(n);
} else {
// Caso B: right left!
n->right = right_rotate(n->right);
n = left_rotate(n);
}
} else if(factor > 1) {
// Pendendo pra esquerda!
if(node_factor(n->left) < 0) {
// Caso C: left right!
n->left = left_rotate(n->left);
n = right_rotate(n);
} else {
// Caso D: left left!
n = right_rotate(n);
}
}
}
// Retorna o nó atual
return n;
}
// Se cair aqui, o item não existia na árvore!
return NULL;
}
int avltree_remove(avltree *t, const char *k) {
int res = 0;
t->root = node_remove(t->root, k, &res);
return res;
}
static int node_size(node *n) {
if(n) {
return 1 + node_size(n->left) + node_size(n->right);
}
return 0;
}
int avltree_size(avltree *t) {
return node_size(t->root);
}
static bool node_balanced(node *n) {
if(n) {
int factor = node_factor(n);
// Um nó está balanceado se tem um fator entre -1 e 1, e seus filhos estão
// também balanceados
return (factor == 0 || factor == 1 || factor == -1)
&& node_balanced(n->left)
&& node_balanced(n->right);
}
return true;
}
bool avltree_balanced(avltree *t) {
return node_balanced(t->root);
}
void avltree_delete(avltree *t) {
node_delete(t->root);
free(t);
}