-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharvore.c
296 lines (245 loc) · 8.86 KB
/
arvore.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 "arvore.h"
void criarArvore(Arvore *A, FILE *indice, int *RRNtotal) {
Pagina *P = calloc(1, sizeof(Pagina));
if (!P) {
printf("Memoria Heap insuficiente!\n");
return;
}
P->numChaves = 0;
P->folha = 1;
int i;
for (i = 0; i < ORDEM+1; i++) {
P->filhos[i] = -1;
}
fwrite(P, sizeof(Pagina), 1, indice); // Guarda raiz no indice
A->raiz = *RRNtotal;
A->estaAtualizado = 0;
(*RRNtotal)++;
free(P);
P = NULL;
}
// Funcao procura chave dentro de uma pagina, usando busca binaria
int procurarChave(int numChaves, int *chaves, int id){
int menor, medio, maior;
menor = -1;
maior = numChaves;
while(menor + 1 < maior){
medio = (menor+maior)/2;
if(chaves[medio] == id)
return medio;
else if(chaves[medio] < id)
menor = medio;
else
maior = medio;
}
return maior;
}
int pesquisarArvore(Pagina *P, int RRN, int id, int *pos, int *encontrado, FILE* indice){
fseek(indice, RRN*sizeof(Pagina), SEEK_SET);
fread(P, sizeof(Pagina), 1, indice);
*pos = procurarChave(P->numChaves, P->chaves, id);
if(*pos < P->numChaves && id == P->chaves[*pos]) {
*encontrado = 1;
return P->byteOffset[*pos];
}
// Se a pagina nao for folha, entao deve-se procurar a esquerda ou a direita do indice
else if (!P->folha){
if (id < P->chaves[*pos]) // Se id for menor, ir para a pagina da esquerda
return pesquisarArvore(P, P->filhos[*pos], id, pos, encontrado, indice);
else // Caso contrario, ir para a pagina da direita
return pesquisarArvore(P, P->filhos[(*pos)], id, pos, encontrado, indice);
}
else { // Se for folha
*encontrado = 0; // A pagina retornada aqui seria a pagina que o indice ficaria
return 0; // se estivesse na arvore junto com a posicao *pos correspondente
}
}
int verificaSplit(int RRN_P, int id, int byteOffset, int *chaveMedia, int *byteMedio, FILE *indice, int *RRNtotal, FILE *log, int *duplication) {
int pos,mid, byte, RRN_P2;
Pagina *P, *P2;
// Carrega Pagina de RRN igual a P
fseek(indice, RRN_P*sizeof(Pagina), SEEK_SET);
P = calloc(1, sizeof(Pagina));
if (!P) {
printf("Memoria Heap insuficente!\n");
return -1;
}
fread(P, sizeof(Pagina), 1, indice);
/* Retorna a posicao de id, se encontrado na pagina, ou a posicao que id
deveria ficar caso nao encontrado */
pos = procurarChave(P->numChaves, P->chaves, id);
if(pos < P->numChaves && P->chaves[pos] == id) {
/* Se achou a chave na arvore B, nao precisa inserir */
//Salva alteracao no arquivo de log
*duplication = 1;
fprintf(log, "Chave <%d> duplicada\n", id);
return -1;
}
// Se a pagina for folha, deve-se tentar inserir id nela
if(P->folha) {
/* Todas as chaves maiores que id devem ser deslocados em 1 espaco para a direita*/
memmove(&P->chaves[pos+1], &P->chaves[pos], sizeof(*(P->chaves)) * (P->numChaves - pos));
memmove(&P->byteOffset[pos+1], &P->byteOffset[pos], sizeof(*(P->byteOffset)) * (P->numChaves - pos));
P->chaves[pos] = id;
P->byteOffset[pos] = byteOffset;
P->numChaves++;
}
else {
/* Se nao for folha, chamar verificaSplit na pagina filha recursivamente
ate chegar em uma pagina folha. Note que mid e byte nesse caso guardam
os valores do id "promovido" (que vai para a pagina pai) e seu byteoffset,
respectivamente */
RRN_P2 = verificaSplit(P->filhos[pos], id, byteOffset, &mid, &byte, indice, RRNtotal, log, duplication);
/* Se o split foi feito: */
if(RRN_P2 != -1) {
/* Desloca as chaves para dar lugar a nova chave (id)*/
memmove(&P->chaves[pos+1], &P->chaves[pos], sizeof(*(P->chaves)) * (P->numChaves - pos));
/* Inclusive o vetor que guarda os filhos tambem deve ser deslocado em um espaco
para a direita, para dar lugar ao filho de id */
memmove(&P->filhos[pos+2], &P->filhos[pos+1], sizeof(*(P->filhos)) * (P->numChaves - pos));
/* Mesmo deslocamento das chaves para os byteOffset*/
memmove(&P->byteOffset[pos+1], &P->byteOffset[pos], sizeof(*(P->byteOffset)) * (P->numChaves - pos));
// Atualiza os valores
P->chaves[pos] = mid;
P->byteOffset[pos] = byte;
/* Se pos+1 == ORDEM da arvore-b, o indice [pos+1] existe no
vetor filhos (serve apenas para armazenar o overflow) */
P->filhos[pos+1] = RRN_P2;
P->numChaves++;
//Atualiza o arquivo de log
fprintf(log, "Chave <%d> promovida\n", mid);
}
}
/* Verifica se ira ocorrer um overflow na pagina apos a insercao de um proximo id */
if(P->numChaves >= ORDEM) {
mid = P->numChaves/2;
*chaveMedia = P->chaves[mid];
*byteMedio = P->byteOffset[mid];
// Aloca nova pagina para receber (a segunda) metade das chaves
// P2 esta na mesma profundidade que o P chamado
P2 = calloc(1, sizeof(Pagina));
if (!P2) {
printf("Memoria Heap insuficente!\n");
return -1;
}
// A principio, a nova pagina nao possui filhos
int i;
for (i = 0; i < ORDEM+1; i++) {
P2->filhos[i] = -1;
}
// A nova pagina vai receber a metade dos dados menos 1 chave (a que vai ser promovida)
P2->numChaves = P->numChaves - mid - 1;
// Se P for folha, entao P2 tambem sera (mesma profundidade)
P2->folha = P->folha;
// Copia a segunda metade de P para P2; P fica com a primeira metade das chaves
memmove(P2->chaves, &P->chaves[mid+1], sizeof(*(P->chaves)) * P2->numChaves);
// Analogo com os byteOffset de cada chave
memmove(P2->byteOffset, &P->byteOffset[mid+1], sizeof(*(P->byteOffset)) * P2->numChaves);
/* Os filhos das chaves as quais foram para P2 tambem devem ser colocados
em P2 */
if(!P->folha) {
memmove(P2->filhos, &P->filhos[mid+1], sizeof(*(P->filhos)) * (P2->numChaves + 1));
}
// P agora fica com a primeira metade das chaves, e por consequencia o numero de
// chaves cai pela metade
P->numChaves = mid;
//Salva alteracao no arquivo de log
fprintf(log, "Divisao de no - pagina %d\n", RRN_P);
// Atualiza P no arquivo de indice
fseek(indice, RRN_P*sizeof(Pagina), SEEK_SET);
fwrite(P, sizeof(Pagina), 1, indice);
free(P);
P = NULL;
// Salva P2 no final do arquivo de indice
fseek(indice, 0, SEEK_END);
fwrite(P2, sizeof(Pagina), 1, indice);
(*RRNtotal)++;
free(P2);
P2 = NULL;
return (*RRNtotal)-1;
}
else {
// Se nao ocorrer overflow na proxima insercao, retornar nulo (nao sera necessario criar nova pagina)
// Atualiza P no arquivo de indice
fseek(indice, RRN_P*sizeof(Pagina), SEEK_SET);
fwrite(P, sizeof(Pagina), 1, indice);
free(P);
P = NULL;
return -1;
}
}
void inserirId(int RRN_P, int id, int byteOffset, FILE *indice, int *RRNtotal, FILE *log, int *duplication) {
Pagina *P1;
Pagina *P;
int chaveMedia, byteMedio;
/* Possivel nova pagina filha a esquerda tem RRN igual ao total (ultima pagina a ser inserida)*/
int RRN_P2; /* Possivel nova pagina filha a direita */
// Verifica se o split deve ser feito, e o faz em caso afirmativo
RRN_P2 = verificaSplit(RRN_P, id, byteOffset, &chaveMedia, &byteMedio, indice, RRNtotal, log, duplication);
/* Se split foi feito na raiz (para isso P2 deve ser nao-nulo nessa linha),
deve-se criar uma nova raiz */
if(RRN_P2 != -1) {
//Aloca memória para novo filho
P1 = malloc(sizeof(Pagina));
if (!P1) {
printf("Memoria Heap insuficente!\n");
return;
}
// Carrega Pagina de RRN igual a P
fseek(indice, RRN_P*sizeof(Pagina), SEEK_SET);
P = calloc(1, sizeof(Pagina));
if (!P) {
printf("Memoria Heap insuficente!\n");
return;
}
fread(P, sizeof(Pagina), 1, indice);
//Copia para P1 o filho ja dividido
memmove(P1, P, sizeof(*P));
//Faz nova raiz que aponta para P1 e P2
P->numChaves = 1;
P->folha = 0;
P->chaves[0] = chaveMedia;
P->byteOffset[0] = byteMedio;
P->filhos[0] = *RRNtotal;
P->filhos[1] = RRN_P2;
int i;
for (i = 2; i < ORDEM+1; i++) {
P->filhos[i] = -1;
}
// Atualiza P no arquivo de indice
fseek(indice, RRN_P*sizeof(Pagina), SEEK_SET);
fwrite(P, sizeof(Pagina), 1, indice);
free(P);
P = NULL;
// Salva P1 no final do arquivo de indice
fseek(indice, 0, SEEK_END);
fwrite(P1, sizeof(Pagina), 1, indice);
(*RRNtotal)++;
free(P1);
P1 = NULL;
//Atualiza o arquivo de log
fprintf(log, "Chave <%d> promovida\n", chaveMedia);
}
}
void printBTree(Pagina* P, Fila* F, FILE* indice, FILE *log){
int mudarnivel = -1, nivel = 0;
while(TotalFila(F)){
int RRN = SaiFila(F);
if(RRN == mudarnivel){
nivel++;
mudarnivel = -1;
}
fseek(indice, RRN*sizeof(Pagina), SEEK_SET);
fread(P, sizeof(Pagina), 1, indice);
fprintf(log, "%d %d ", nivel, P->numChaves);
int i;
for(int i = 0; i < P->numChaves; i++){
fprintf(log, "<%d/%d> ", P->chaves[i], P->byteOffset[i]);
}
for(i = 0; (i <= P->numChaves) && !P->folha; i++)
EntraFila(F, P->filhos[i]);
if(mudarnivel == -1)
mudarnivel = P->filhos[0];
fprintf(log, "\n");
}
}