-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharvore.h
217 lines (183 loc) · 3.31 KB
/
arvore.h
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
#include <stdlib.h>
#include <string.h>
typedef struct NoArvore
{
int Valor;
char string[50];
struct NoArvore *E;
struct NoArvore *D;
}NoArvore;
typedef struct Arvore
{
NoArvore *Raiz;
int Tamanho;
}Arvore;
Arvore* ArvoreNovo(void)
{
Arvore *a = (Arvore*)malloc(sizeof(Arvore));
a->Raiz = NULL;
a->Tamanho = 0;
return a;
}
int ArvoreInserir(Arvore *a, int Valor, char string[])
{
if(a == NULL)
return 0;
NoArvore *no = (NoArvore*)malloc(sizeof(NoArvore));
if(no == NULL)
return 0;
strcpy(no->string, string); //inserindo a string no nó
//printf("no->String = %s\n", no->string);
no->Valor = Valor;
no->E = NULL;
no->D = NULL;
NoArvore *atual = a->Raiz;
NoArvore *pai = NULL;
while(atual != NULL)
{
pai = atual;
if(no->Valor < atual->Valor)
{
atual = atual->E;
}
else
{
if(no->Valor == atual->Valor && strcmp(no->string, atual->string) == 0){/*Verificação para não inserir palavras repetidas*/
return 1;
}
else
atual = atual->D;
}
}
if(pai == NULL)
{
a->Raiz = no; //inserir na raiz
}
else if(Valor < pai->Valor)
{
pai->E = no;
}
else
{
pai->D = no;
}
//printf("no->Valor = %d\n", no->Valor);
a->Tamanho++;
return 1;
}
int ArvoreRemover(Arvore *a, int Valor)
{
if(a == NULL || a->Tamanho == 0)
{
return 0;
}
NoArvore *atual = a->Raiz; //aponta para o elemento a ser removido;
NoArvore *pai = NULL; //aponta para o pai do elemento a ser removido;
while(atual != NULL && atual->Valor != Valor)
{
pai = atual;
if(Valor < atual->Valor)
{
atual = atual->E;
}
else
{
atual = atual->D;
}
}
if(atual == NULL)
{
//não encontrei o elemento
return 0;
}
if(atual->E == NULL && atual->D == NULL)
{
//remoção de nó folha
if(pai == NULL)
{
//remoção da raiz
a->Raiz = NULL;
}
else if(Valor < pai->Valor)
{
pai->E = NULL;
}
else
{
pai->D = NULL;
}
}
else if(atual->E != NULL && atual->D == NULL)
{
//nó com filho apenas à esquerda
if(pai == NULL)
{
//remoção da raiz
a->Raiz = atual->E;
}
else if(Valor < pai->Valor)
{
pai->E = atual->E;
}
else
{
pai->D = atual->E;
}
}
else if(atual->E == NULL && atual->D != NULL)
{
//nó com filho apenas à direita
if(pai == NULL)
{
//remoção da raiz
a->Raiz = atual->D;
}
else if(Valor < pai->Valor)
{
pai->E = atual->D;
}
else
{
pai->D = atual->D;
}
}
else
{
//nó com ambos os filhos
NoArvore *substituto = atual->E; //substituto do nó a ser removido
NoArvore *paiSubstituto = atual;
while(substituto->D != NULL)
{
paiSubstituto = substituto;
substituto = substituto->D;
}
if(paiSubstituto != atual)
{
paiSubstituto->D = substituto->E;
substituto->E = atual->E;
}
substituto->D = atual->D;
if(pai == NULL)
{
a->Raiz = substituto;
}
else if(Valor < pai->Valor)
{
pai->E = substituto;
}
else
{
pai->D = substituto;
}
}
free(atual);
atual = NULL;
a->Tamanho--;
return 1;
}
int ArvoreDestruir(Arvore *a){
while(a->Raiz != NULL){
ArvoreRemover(a, a->Raiz->Valor);
}
return 0;
}