]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* BUGFIX : Habia un error al borrar claves que no estaban en las hojas.
authorRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 26 May 2004 01:06:59 +0000 (01:06 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 26 May 2004 01:06:59 +0000 (01:06 +0000)
 * Fundir terminado, falta hacer un par de pruebas mas.

emufs/indice_b.c

index bf07a88577b872dbbb20df24da9a28723973779e..b11978475ddf947719a379e45a036552586d7c39 100644 (file)
@@ -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; i<h_padre.cant; i++)
+               c_padre[i] = c_padre[i+1];
+       h_izq.cant++;
+       for(i=0; i<h_der.cant; i++)
+               c_izq[h_izq.cant+i] = c_der[i];
+
+       h_izq.cant += h_der.cant;
+       
+       b_actualizar_header(izq, &h_izq);
+       b_actualizar_header(padre, &h_padre);
+
+       /* TODO Aca queda libre el nodo der, ver de recuperar! */
+       memset(der, 'X', idx->tam_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)