X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/925614222efcf0d79b24563577c712ff14e25312..78b4c00aa74769f14ebd47d5353b6ce613a384d2:/emufs/indice_b.c?ds=sidebyside diff --git a/emufs/indice_b.c b/emufs/indice_b.c index bf07a88..b119784 100644 --- a/emufs/indice_b.c +++ b/emufs/indice_b.c @@ -41,7 +41,7 @@ static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_Nodo /** Le pasa al hermano izquierdo una clave cuando se insertan claves */ static void b_pasar_clave_a_izquierda(INDICE*, char*, int, char*, int, int, B_NodoEntry, int, int); /** Junta 2 nodos y hace uno solo */ -static void b_fundir_nodo(char *, int, char *, int, char *, int, int); +static void b_fundir_nodo(INDICE *,char *, int, char *, int, char *, int, int); static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo); @@ -594,7 +594,7 @@ INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant) static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k) { - int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id; + int pos, actual_id, padre_id, i, pos_padre, izquierda_id, derecha_id, p; B_NodoHeader header, header_actual, header_padre, header_izq, header_der; B_NodoEntry *claves, *claves_actual, *claves_padre;/*, *claves_izq, *claves_der;*/ char *actual, *padre, *izq, *der; @@ -612,11 +612,12 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k) fprintf(stderr, "La clave esta en la pos = %d\n", pos); if (header.hijo_izquierdo != -1) { PERR("Nodo no es hoja, intercambio"); - /* No!, es un nodo intermedio!! */ - if (pos == 0) - actual = b_leer_nodo(idx, header.hijo_izquierdo); - else - actual = b_leer_nodo(idx, claves[pos+1].hijo_derecho); +/* if (pos == 0) { + actual = b_leer_nodo(idx, nodo_header.hijo_izquierdo); + else*/ + actual = b_leer_nodo(idx, claves[pos].hijo_derecho); + actual_id = claves[pos].hijo_derecho; + p = claves[pos].hijo_derecho; b_leer_header(actual, &header_actual); while (header_actual.hijo_izquierdo != -1) { @@ -625,9 +626,10 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k) actual = b_leer_nodo(idx, actual_id); b_leer_header(actual, &header_actual); } - claves_actual = b_leer_claves(actual, &header); + claves_actual = b_leer_claves(actual, &header_actual); claves[pos] = claves_actual[0]; + claves[pos].hijo_derecho = p; pos = 0; b_grabar_nodo(idx, nodo_id, nodo); PERR("Listo"); @@ -725,9 +727,9 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k) /* No pude pasar clave, tengo que fundir :-( */ PERR("Fundo nodos!"); if (derecha_id != -1) { - b_fundir_nodo(actual, actual_id, padre, padre_id, der, derecha_id, pos_padre); + b_fundir_nodo(idx, actual, actual_id, padre, padre_id, der, derecha_id, pos_padre); } else { - b_fundir_nodo(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1); + b_fundir_nodo(idx, izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre); } } @@ -840,8 +842,35 @@ void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, padre_entries[padre_pos] = entry; } -static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave) +static void b_fundir_nodo(INDICE *idx, char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_padre) { + int i; + B_NodoHeader h_izq, h_padre, h_der; + B_NodoEntry *c_izq, *c_padre, *c_der; + + b_leer_header(der, &h_der); + c_der = b_leer_claves(der, &h_der); + b_leer_header(izq, &h_izq); + c_izq = b_leer_claves(izq, &h_izq); + b_leer_header(padre, &h_padre); + c_padre = b_leer_claves(padre, &h_padre); + + c_izq[h_izq.cant] = c_padre[pos_padre]; + h_padre.cant--; + for(i=pos_padre; itam_bloque); + b_grabar_nodo(idx, der_id, der); } static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)