-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtreeBinary.c
296 lines (241 loc) · 7.7 KB
/
treeBinary.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
#include "treeBinary.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Node *newNode(Product product) {
Node *node = (Node *)malloc(sizeof(Node));
node->product = product;
node->left = NULL;
node->right = NULL;
node->height = 1;
return node;
}
// Função para obter a altura da árvore
int height(Node *node) {
if (node == NULL)
return 0;
return node->height;
}
// Função para obter o máximo de dois inteiros
int max(int a, int b) { return (a > b) ? a : b; }
// Rotação a direita no y
Node *rightRotate(Node *y) {
Node *x = y->left;
Node *T2 = x->right;
// faz a rotação
x->right = y;
y->left = T2;
// atualiza a altura
y->height = max(height(y->left), height(y->right)) + 1;
x->height = max(height(x->left), height(x->right)) + 1;
// retorna a nova raiz
return x;
}
// rotação a direita de x
Node *leftRotate(Node *x) {
Node *y = x->right;
Node *T2 = y->left;
// faz a rotação
y->left = x;
x->right = T2;
// atualiza a altura
x->height = max(height(x->left), height(x->right)) + 1;
y->height = max(height(y->left), height(y->right)) + 1;
// Retorna a nova Raiz
return y;
}
// Função para obter o fator de balanceamento de um nó N
int getBalance(Node *node) {
if (node == NULL)
return 0;
return height(node->left) - height(node->right);
}
Node *minValueNode(Node *node) {
Node *current = node;
/* loop para encontrar o nó mais a esquerda */
while (current && current->left != NULL)
current = current->left;
return current;
}
Node *insert(Node *node, Product product) {
/* 1. Realiza a inserção normal de BST */
if (node == NULL)
return (newNode(product));
if (product.id < node->product.id)
node->left = insert(node->left, product);
else if (product.id > node->product.id)
node->right = insert(node->right, product);
else // IDs iguais não são permitidos na BST
return node;
/* 2. Atualiza a altura do nó ancestral */
node->height = 1 + max(height(node->left), height(node->right));
/* 3. Obtém o fator de balanceamento deste nó raiz para verificar se este nó
* se tornou desbalanceado */
int balance = getBalance(node);
// Se este nó se torna desbalanceado, então há 4 casos:
// Caso esquerda esquerda
if (balance > 1 && product.id < node->left->product.id)
return rightRotate(node);
// Caso direita direita
if (balance < -1 && product.id > node->right->product.id)
return leftRotate(node);
// Caso esquerda direita
if (balance > 1 && product.id > node->left->product.id) {
node->left = leftRotate(node->left);
return rightRotate(node);
}
// Caso direita esquerda
if (balance < -1 && product.id < node->right->product.id) {
node->left = rightRotate(node->right);
return leftRotate(node);
}
/* retorna o ponteiro do nó (inalterado) */
return node;
}
// Função que apaga uma Chave da BST e retorna uma nova raiz
Node *deleteNode(Node *root, Product product) {
if (root == NULL)
return root;
// testa se a chave buscada é menor que a raiz "atual"
if (product.id < root->product.id) {
root->left = deleteNode(root->left, product);
}
// testa se a chave buscada é maior que a "raiz"
else if (product.id > root->product.id) {
root->right = deleteNode(root->right, product);
}
// se a chave for igual ao dado do nó raiz, esse será apagado
else {
// Caso II: O nó a ser eliminado tem uma subárvore a direita
if (root->left == NULL) {
Node *temp = root->right;
free(root);
return temp;
}
// Caso III: O nó a ser eliminado tem uma subárvore a esquerda
else if (root->right == NULL) {
Node *temp = root->left;
free(root);
return temp;
}
// Caso IV: O nó a ser eliminado tem duas subárvores
// Pega o Sucessor em inorder (menor da subarvore direita)
Node *temp = minValueNode(root->right);
// copia o conteúdo do sucessor em inorder para esse nó
root->product.id = temp->product.id;
// Apaga o sucessor em inorder
root->right = deleteNode(root->right, temp->product);
}
// if(root == NULL){
// return root; //Se foi o último nó que havia removido!!
//}
/* 2. Atualiza a altura do nó ancestral */
root->height = 1 + max(height(root->left), height(root->right));
/* 3. Obtém o fator de balanceamento deste nó raiz para verificar se este nó
* se tornou desbalanceado */
int balance = getBalance(root);
// Se este nó se torna desbalanceado, então há 4 casos:
// Caso esquerda esquerda
if (balance > 1 && product.id < root->left->product.id)
return rightRotate(root);
// Caso direita direita
if (balance < -1 && product.id > root->right->product.id)
return leftRotate(root);
// Caso esquerda direita
if (balance > 1 && product.id > root->left->product.id) {
root->left = leftRotate(root->left);
return rightRotate(root);
}
// Caso direita esquerda
if (balance < -1 && product.id < root->right->product.id) {
root->left = rightRotate(root->right);
return leftRotate(root);
}
return root;
}
int returnBiggestId(Node *root) {
if (root == NULL) {
return 0;
}
if (root->right != NULL) {
return returnBiggestId(root->right);
} else {
return root->product.id;
}
}
// Função para buscar um produto por Id na árvore AVL
Node *searchForId(Node *node, int id) {
if (node == NULL || node->product.id == id)
return node;
if (id < node->product.id)
return searchForId(node->left, id);
return searchForId(node->right, id);
}
// impressão da árvore e das alturas dos nós
void printTree(Node *root, int desloc) {
if (root == NULL)
return;
printTree(root->right, desloc + 3);
printf("%*s%d %d %s\n", desloc, "", root->product.id, root->product.quantity, root->product.name);
printTree(root->left, desloc + 3);
}
void inOrder(Node *root) {
if (root == NULL)
return;
inOrder(root->left);
printf("\n%d", root->product.id);
inOrder(root->right);
}
// FUNÇÕES ÁRVORE AVL ORGANIZADA POR ORDEM ALFABETICA PELO NOME
Node *insertOrderName(Node *node, Product product) {
if (node == NULL)
return (newNode(product));
// Função que compara strings
int compareResult = strcmp(product.name, node->product.name);
if (compareResult < 0)
node->left = insertOrderName(node->left, product);
else if (compareResult > 0)
node->right = insertOrderName(node->right, product);
else
return node;
/*
node->height = 1 + max(height(node->left), height(node->right));
int balance = getBalance(node);
if (balance > 1 && getBalance(node->left) >= 0)
return rightRotate(node);
if (balance < -1 && getBalance(node->right) <= 0)
return leftRotate(node);
if (balance > 1 && getBalance(node->left) < 0)
node->left = leftRotate(node->left);
return rightRotate(node);
if (balance < -1 && getBalance(node->right) > 0)
node->right = rightRotate(node->right);
return leftRotate(node);
*/
return node;
}
void printTreeOrder(Node *root, int desloc) {
if (root == NULL)
return;
printTreeOrder(root->right, desloc + 3);
printf("%*s%s\n", desloc, "", root->product.name);
printTreeOrder(root->left, desloc + 3);
}
void inOrderTree(Node *root) {
if (root == NULL)
return;
inOrderTree(root->left);
printf("%s ", root->product.name);
inOrderTree(root->right);
}
void printTreeToFile(Node *root, FILE *file, double *total) {
if (root != NULL) {
printTreeToFile(root->left, file, total);
double value = (root->product.cost * root->product.quantity);
*total += value;
fprintf(file, " %-5d %-23s %-8d R$%-7.2lf R$%-7.2lf R$%.2lf\n",
root->product.id, root->product.name, root->product.quantity,
root->product.priceSale, root->product.cost, value);
printTreeToFile(root->right, file, total);
}
}