]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indice_b.c
Insertar B+ en teoria fully working con encadenamiento en hojas y toda la mar en...
[z.facultad/75.06/emufs.git] / emufs / indice_b.c
index d25fec92c11b6730b7c16c9791b7cdb1febb02d3..b11978475ddf947719a379e45a036552586d7c39 100644 (file)
@@ -2,7 +2,7 @@
 #include "indice_b.h"
 #include "common.h"
 #include "emufs.h"
 #include "indice_b.h"
 #include "common.h"
 #include "emufs.h"
-#include <curses.h>
+#include "form.h"
 
 /* Cantidad de claves por nodo */
 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
 
 /* Cantidad de claves por nodo */
 #define CANT_HIJOS(x) ((x->tam_bloque-sizeof(B_NodoHeader))/sizeof(B_NodoEntry))
 static void b_grabar_nodo(INDICE *idx, int id, char *data);
 /** Da el ID del proximo nodo a poder ser utilizado */
 static int b_ultimo_id(INDICE *idx);
 static void b_grabar_nodo(INDICE *idx, int id, char *data);
 /** Da el ID del proximo nodo a poder ser utilizado */
 static int b_ultimo_id(INDICE *idx);
-/** Lee un nodo desde el archivo */
-static char *b_leer_nodo(INDICE *idx, int id);
 /** Crea un nodo en el archivo y lo retorna. En i se pone el ID asignado */
 static char *b_crear_nodo(INDICE *idx, int *i);
 /** Crea un nodo en el archivo y lo retorna. En i se pone el ID asignado */
 static char *b_crear_nodo(INDICE *idx, int *i);
-/** Lee el header de un nodo y lo guarda en header */
-static void b_leer_header(char *src, B_NodoHeader *header);
 /** Actualiza el header de un nodo desde header */
 static void b_actualizar_header(char *src, B_NodoHeader *header);
 /** Actualiza el header de un nodo desde header */
 static void b_actualizar_header(char *src, B_NodoHeader *header);
-/** Retorna el array de claves del nodo (esta data modifica directamente el bloque
- *  por eso no es necesario usar un actualizar_claves 
- */
-static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
 /** Inserta una clave en el nodo de manera iterativa.
  * \param idx Índice en donde insertar la clave.
  * \param clave Clave a insertar.
 /** Inserta una clave en el nodo de manera iterativa.
  * \param idx Índice en donde insertar la clave.
  * \param clave Clave a insertar.
@@ -35,9 +27,9 @@ static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
  * \param hijo1 Id del nodo hijo de la izquierda del insertado.
  * \param hijo2 Id del nodo hijo de la derecha del insertado.
  */
  * \param hijo1 Id del nodo hijo de la izquierda del insertado.
  * \param hijo2 Id del nodo hijo de la derecha del insertado.
  */
-static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
+static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der);
 /** Inserta en un nodo en el que se sabe positivamente que hay lugar. */
 /** Inserta en un nodo en el que se sabe positivamente que hay lugar. */
-static void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2);
+static void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der);
 /** Borra una clave del arbol */
 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
 /** Le pide al hermano derecho del nodo una clave cuando se eliminan claves */
 /** Borra una clave del arbol */
 static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k);
 /** Le pide al hermano derecho del nodo una clave cuando se eliminan claves */
@@ -47,9 +39,9 @@ static void b_pedir_clave_izquierda(char *, int, char *, int, char *, int, int);
 /** Le pasa al hermano derecho del nodo una clave cuando se insertan claves */
 static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_NodoEntry);
 /** Le pasa al hermano izquierdo una clave cuando se insertan claves */
 /** Le pasa al hermano derecho del nodo una clave cuando se insertan claves */
 static void b_pasar_clave_a_derecha(INDICE*, char*, int, char*, int, int, B_NodoEntry);
 /** 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);
+static void b_pasar_clave_a_izquierda(INDICE*, char*, int, char*, int, int, B_NodoEntry, int, int);
 /** Junta 2 nodos y hace uno solo */
 /** 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);
 
                        
 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo);
 
@@ -222,6 +214,7 @@ int emufs_indice_b_borrar(INDICE *idx, CLAVE k)
 
        if (encontrado) {
                PERR("Clave encontrada, borrando ...");
 
        if (encontrado) {
                PERR("Clave encontrada, borrando ...");
+               fprintf(stderr, "La clave a borrar esta en el nodo %d\n", nodo_id);
                b_borrar_clave(idx, nodo, nodo_id, k);
        } else {
                PERR("Clave no encontrada");
                b_borrar_clave(idx, nodo, nodo_id, k);
        } else {
                PERR("Clave no encontrada");
@@ -262,7 +255,7 @@ static char *b_crear_nodo(INDICE *idx, int *id)
        return bloque;
 }
 
        return bloque;
 }
 
-static char *b_leer_nodo(INDICE *idx, int id)
+char *b_leer_nodo(INDICE *idx, int id)
 {
        FILE *fp;
        char *out;
 {
        FILE *fp;
        char *out;
@@ -317,7 +310,7 @@ static void b_grabar_nodo(INDICE *idx, int id, char *data)
        fclose(fp);
 }
 
        fclose(fp);
 }
 
-static void b_leer_header(char *src, B_NodoHeader *header)
+void b_leer_header(char *src, B_NodoHeader *header)
 {
        if (!src) return;
 
 {
        if (!src) return;
 
@@ -330,7 +323,7 @@ static void b_actualizar_header(char *src, B_NodoHeader *header)
        memcpy(src, header, sizeof(B_NodoHeader));
 }
 
        memcpy(src, header, sizeof(B_NodoHeader));
 }
 
-static B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
+B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header)
 {
        return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
 }
 {
        return (B_NodoEntry *)(src+sizeof(B_NodoHeader));
 }
@@ -470,7 +463,7 @@ static void b_insertar_en_nodo(INDICE *idx, CLAVE clave, INDICE_DATO dato, int n
        } while (!salir);
 }
 
        } while (!salir);
 }
 
-void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo1, int hijo2)
+void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_izq, int hijo_der)
 {
        int i = 0;
        B_NodoHeader nodo_header;
 {
        int i = 0;
        B_NodoHeader nodo_header;
@@ -487,11 +480,11 @@ void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, in
        claves[i].clave = clave;
        claves[i].dato = dato;
        if (i==0) {
        claves[i].clave = clave;
        claves[i].dato = dato;
        if (i==0) {
-               nodo_header.hijo_izquierdo = hijo1;
-               claves[i].hijo_derecho = hijo2;
+               nodo_header.hijo_izquierdo = hijo_izq;
+               claves[i].hijo_derecho = hijo_der;
        } else {
        } else {
-               claves[i-1].hijo_derecho = hijo1;
-               claves[i].hijo_derecho = hijo2;
+               claves[i-1].hijo_derecho = hijo_izq;
+               claves[i].hijo_derecho = hijo_der;
        }
        /*b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);*/
 
        }
        /*b_elegir_izquierdo(idx, nodo_header.hijo_izquierdo, hijo1);*/
 
@@ -499,29 +492,64 @@ void b_insertar_en_nodo_con_lugar(INDICE *idx, CLAVE clave, INDICE_DATO dato, in
        b_grabar_nodo(idx, nodo_id, nodo);
 
        /* Debo actualizar los punteros al padre de los hijos */
        b_grabar_nodo(idx, nodo_id, nodo);
 
        /* Debo actualizar los punteros al padre de los hijos */
-       if (hijo1 != -1) {
-               char* nuevo = b_leer_nodo(idx, hijo1);
+       if (hijo_izq != -1) {
+               char* nuevo = b_leer_nodo(idx, hijo_izq);
                if (nuevo != NULL) {
                        B_NodoHeader nuevo_header;
                if (nuevo != NULL) {
                        B_NodoHeader nuevo_header;
-                       fprintf(stderr, "Actualizo padre de %d a %d\n", hijo1, nodo_id);
+                       fprintf(stderr, "Actualizo padre de %d a %d\n", hijo_izq, nodo_id);
                        b_leer_header(nuevo, &nuevo_header);
                        nuevo_header.padre = nodo_id;
                        b_actualizar_header(nuevo, &nuevo_header);
                        b_leer_header(nuevo, &nuevo_header);
                        nuevo_header.padre = nodo_id;
                        b_actualizar_header(nuevo, &nuevo_header);
-                       b_grabar_nodo(idx, hijo1, nuevo);
+                       b_grabar_nodo(idx, hijo_izq, nuevo);
                        free(nuevo);
                        free(nuevo);
-               } else printf("FUCK! hijo1=%d no existe!\n", hijo1);
+               } else printf("FUCK! hijo_izq=%d no existe!\n", hijo_izq);
        }
        }
-       if (hijo2 != -1) {
-               char* nuevo = b_leer_nodo(idx, hijo2);
+       if (hijo_der != -1) {
+               char* nuevo = b_leer_nodo(idx, hijo_der);
                if (nuevo != NULL) {
                        B_NodoHeader nuevo_header;
                if (nuevo != NULL) {
                        B_NodoHeader nuevo_header;
-                       fprintf(stderr, "Actualizo padre de %d a %d\n", hijo2, nodo_id);
+                       fprintf(stderr, "Actualizo padre de %d a %d\n", hijo_der, nodo_id);
                        b_leer_header(nuevo, &nuevo_header);
                        nuevo_header.padre = nodo_id;
                        b_actualizar_header(nuevo, &nuevo_header);
                        b_leer_header(nuevo, &nuevo_header);
                        nuevo_header.padre = nodo_id;
                        b_actualizar_header(nuevo, &nuevo_header);
-                       b_grabar_nodo(idx, hijo2, nuevo);
+                       b_grabar_nodo(idx, hijo_der, nuevo);
                        free(nuevo);
                        free(nuevo);
-               } else printf("FUCK! hijo2=%d no existe!\n", hijo2);
+               } else printf("FUCK! hijo_der=%d no existe!\n", hijo_der);
+       }
+}
+
+void b_insertar_en_nodo_con_lugar_sin_hijo_izq(INDICE *idx, CLAVE clave, INDICE_DATO dato, int nodo_id, char *nodo, int hijo_der)
+{
+       int i = 0;
+       B_NodoHeader nodo_header;
+       B_NodoEntry* claves;
+       b_leer_header(nodo, &nodo_header);
+       claves = b_leer_claves(nodo, &nodo_header);
+       if (nodo_header.cant > 0) {
+               int j;
+               while ((i < nodo_header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, clave))) i++;
+               for(j=nodo_header.cant; j > i; j--)
+                       claves[j] = claves[j-1];
+       }
+       nodo_header.cant++;
+       claves[i].clave = clave;
+       claves[i].dato = dato;
+       claves[i].hijo_derecho = hijo_der;
+
+       b_actualizar_header(nodo, &nodo_header);
+       b_grabar_nodo(idx, nodo_id, nodo);
+
+       /* Debo actualizar el puntero al padre del hijo */
+       if (hijo_der != -1) {
+               char* nuevo = b_leer_nodo(idx, hijo_der);
+               if (nuevo != NULL) {
+                       B_NodoHeader nuevo_header;
+                       b_leer_header(nuevo, &nuevo_header);
+                       nuevo_header.padre = nodo_id;
+                       b_actualizar_header(nuevo, &nuevo_header);
+                       b_grabar_nodo(idx, hijo_der, nuevo);
+                       free(nuevo);
+               } else printf("FUCK! hijo_der=%d no existe!\n", hijo_der);
        }
 }
 
        }
 }
 
@@ -566,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)
 {
 
 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;
        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;
@@ -581,13 +609,15 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
        while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
 
        /* Es el nodo una hoja? */
        while (emufs_indice_es_menor(idx, claves[pos].clave, k)) pos++;
 
        /* Es el nodo una hoja? */
+       fprintf(stderr, "La clave esta en la pos = %d\n", pos);
        if (header.hijo_izquierdo != -1) {
                PERR("Nodo no es hoja, intercambio");
        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) {
 
                b_leer_header(actual, &header_actual);
                while (header_actual.hijo_izquierdo != -1) {
@@ -596,20 +626,24 @@ 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);
                }
                        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] = claves_actual[0];
+               claves[pos].hijo_derecho = p;
                pos = 0;
                b_grabar_nodo(idx, nodo_id, nodo);
                PERR("Listo");
        } else {
                PERR("Nodo es hoja");
                actual = nodo;
                pos = 0;
                b_grabar_nodo(idx, nodo_id, nodo);
                PERR("Listo");
        } else {
                PERR("Nodo es hoja");
                actual = nodo;
+               header_actual = header;
+               claves_actual = claves;
+               actual_id = nodo_id;
        }
 
        /* Borro la clave */
        PERR("Borrando clave");
        }
 
        /* Borro la clave */
        PERR("Borrando clave");
-       for(i=pos; i < header_actual.cant; i++) {
+       for(i=pos; i < header_actual.cant-1; i++) {
                claves_actual[i] = claves_actual[i+1];
        }
        PERR("Borrado completo");
                claves_actual[i] = claves_actual[i+1];
        }
        PERR("Borrado completo");
@@ -620,6 +654,7 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
 
        /* Se cumple la condicion de hijos? */
        PERR("Dejo todo consistente");
 
        /* Se cumple la condicion de hijos? */
        PERR("Dejo todo consistente");
+       fprintf(stderr, "Condicion : %d >= %d\n", header_actual.cant, MIN_HIJOS(idx));
        if (header_actual.cant >= MIN_HIJOS(idx)) {
                PERR("Borrar completo sin fundir");
                return;
        if (header_actual.cant >= MIN_HIJOS(idx)) {
                PERR("Borrar completo sin fundir");
                return;
@@ -643,7 +678,7 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
                        b_leer_header(der, &header_der);
                } else {
                        PERR("Buscando que hijo soy");
                        b_leer_header(der, &header_der);
                } else {
                        PERR("Buscando que hijo soy");
-                       for(pos_padre=0; (pos_padre<header_padre.cant) && (claves_padre[pos_padre].hijo_derecho != actual_id); pos_padre++)     {       }
+                       for(pos_padre=0; (claves_padre[pos_padre].hijo_derecho != actual_id); pos_padre++)      {       }
 
                        if (pos_padre == header_padre.cant) {
                                PERR("ERROR GRAVE. Padre no me contiene :-(");
 
                        if (pos_padre == header_padre.cant) {
                                PERR("ERROR GRAVE. Padre no me contiene :-(");
@@ -673,34 +708,44 @@ static void b_borrar_clave(INDICE *idx, char *nodo, int nodo_id, CLAVE k)
                PERR("Ta calcule lo que tengo que hacer");
                if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
                        PERR("Le pido clave a derecha");
                PERR("Ta calcule lo que tengo que hacer");
                if ((derecha_id != -1) && (header_der.cant > MIN_HIJOS(idx))) {
                        PERR("Le pido clave a derecha");
+                       fprintf(stderr, "ANTES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
                        b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
                        PERR("listo");
                        b_pedir_clave_derecha(der, derecha_id, padre, padre_id, actual, actual_id, pos_padre);
                        PERR("listo");
+                       b_leer_header(der, &header_der);
+                       b_leer_header(padre, &header_padre);
+                       b_leer_header(actual, &header_actual);
+                       fprintf(stderr, "DESPUES DE PEDIR DERECHA TENGO %d claves\n", header_actual.cant);
                } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
                        PERR("Le pido clave a izquierda");
                } else if ((izquierda_id != -1) && (header_izq.cant > MIN_HIJOS(idx))) {
                        PERR("Le pido clave a izquierda");
-                       b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre-1);
+                       b_pedir_clave_izquierda(izq, izquierda_id, padre, padre_id, actual, actual_id, pos_padre);
+                       /* como se modificaron cosas, leo de nuevo los headers */
+                       b_leer_header(izq, &header_izq);
+                       b_leer_header(padre, &header_padre);
+                       b_leer_header(actual, &header_actual);
                        PERR("Listo");
                } else {
                        /* No pude pasar clave, tengo que fundir :-( */
                        PERR("Fundo nodos!");
                        if (derecha_id != -1) {
                        PERR("Listo");
                } else {
                        /* 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 {
                        } 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);
                        }
                }
 
                /* TODO que guardo ?, todo ? */
                b_grabar_nodo(idx, actual_id, actual);
                        }
                }
 
                /* TODO que guardo ?, todo ? */
                b_grabar_nodo(idx, actual_id, actual);
-               b_grabar_nodo(idx, izquierda_id, izq);
-               b_grabar_nodo(idx, derecha_id, der);
-               b_grabar_nodo(idx, padre_id, padre);
+               if (izquierda_id != -1) b_grabar_nodo(idx, izquierda_id, izq);
+               if (derecha_id != -1) b_grabar_nodo(idx, derecha_id, der);
+               if (padre_id != -1) b_grabar_nodo(idx, padre_id, padre);
                if (actual_id != -1) free(actual);
                if (actual_id != -1) free(actual);
-               /*if (padre_id != -1) free(padre);*/
                if (derecha_id != -1) free(der);
                if (izquierda_id != -1) free(izq);
                actual = padre;
                actual_id = padre_id;
                if (derecha_id != -1) free(der);
                if (izquierda_id != -1) free(izq);
                actual = padre;
                actual_id = padre_id;
-       } while ((actual_id != -1) && (header_actual.cant < MIN_HIJOS(idx)));
+               b_leer_header(actual, &header_actual);
+               claves_actual = b_leer_claves(actual, &header_actual);
+       } while ((actual_id != -1) && (actual_id != 0) && (header_actual.cant < MIN_HIJOS(idx)));
 }
 
 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
 }
 
 static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_id, char *nodo, int nodo_id, int pos_clave)
@@ -716,14 +761,14 @@ static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_
        b_leer_header(padre, &h_padre);
        c_padre = b_leer_claves(padre, &h_padre);
 
        b_leer_header(padre, &h_padre);
        c_padre = b_leer_claves(padre, &h_padre);
 
-       c_nodo[h_nodo.cant] = c_padre[pos_clave];
+       c_nodo[h_nodo.cant] = c_padre[pos_clave+1];
        c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
 
        c_nodo[h_nodo.cant].hijo_derecho = -1; /* XXX */
 
-       c_padre[pos_clave] = c_der[0];
-       c_padre[pos_clave].hijo_derecho = der_id;
+       c_padre[pos_clave+1] = c_der[0];
+       c_padre[pos_clave+1].hijo_derecho = der_id;
        
        /* Muevo las claves de derecho */
        
        /* Muevo las claves de derecho */
-       for(i=0; i<h_der.cant; i++) {
+       for(i=0; i<h_der.cant-1; i++) {
                c_der[i] = c_der[i+1];
        }
        h_der.cant--;
                c_der[i] = c_der[i+1];
        }
        h_der.cant--;
@@ -735,12 +780,11 @@ static void b_pedir_clave_derecha(char *der, int der_id, char *padre, int padre_
 
 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
 {
 
 void b_pasar_clave_a_derecha(INDICE *idx, char *der, int der_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
 {
-       B_NodoHeader der_h, padre_h;
-       B_NodoEntry *der_entries, *padre_entries;
+       B_NodoHeader padre_h, der_h;
+       B_NodoEntrypadre_entries;
        /* Leo claves y cabecera del nodo de la derecha y del padre */
        /* Leo claves y cabecera del nodo de la derecha y del padre */
-       b_leer_header(der, &der_h);
-       der_entries = b_leer_claves(der, &der_h);
        b_leer_header(padre, &padre_h);
        b_leer_header(padre, &padre_h);
+       b_leer_header(der, &der_h);
        padre_entries = b_leer_claves(padre, &padre_h);
        /* Inserto en el hijo derecho la clave del padre */
        b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
        padre_entries = b_leer_claves(padre, &padre_h);
        /* Inserto en el hijo derecho la clave del padre */
        b_insertar_en_nodo_con_lugar(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
@@ -763,52 +807,70 @@ void b_pedir_clave_izquierda(char *izq, int izq_id, char *padre, int padre_id, c
        b_leer_header(padre, &h_padre);
        c_padre = b_leer_claves(padre, &h_padre);
 
        b_leer_header(padre, &h_padre);
        c_padre = b_leer_claves(padre, &h_padre);
 
-       for(i=h_nodo.cant; i>0;i++)
+       PERR("Muevo las claves");
+       for(i=h_nodo.cant; i>0;i--)
                c_nodo[i] = c_nodo[i-1];
 
        h_nodo.cant++;
                c_nodo[i] = c_nodo[i-1];
 
        h_nodo.cant++;
+       PERR("Paso clave de padre a nodo");
        c_nodo[0] = c_padre[pos_clave];
        c_nodo[0].hijo_derecho = -1; /* XXX */
        c_nodo[0] = c_padre[pos_clave];
        c_nodo[0].hijo_derecho = -1; /* XXX */
+       PERR("Paso clave de izquierda a padre");
        c_padre[pos_clave] = c_izq[h_izq.cant-1];
        c_padre[pos_clave] = c_izq[h_izq.cant-1];
-       c_padre[pos_clave].hijo_derecho = izq_id;
+       c_padre[pos_clave].hijo_derecho = nodo_id;
        h_izq.cant--;
 
        h_izq.cant--;
 
+       PERR("ACTUALIZO")
        b_actualizar_header(izq, &h_izq);
        b_actualizar_header(padre, &h_padre);
        b_actualizar_header(nodo, &h_nodo);
        b_actualizar_header(izq, &h_izq);
        b_actualizar_header(padre, &h_padre);
        b_actualizar_header(nodo, &h_nodo);
+       PERR("Salgo");
 }
 
 }
 
-void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry)
+void b_pasar_clave_a_izquierda(INDICE* idx, char *izq, int izq_id, char *padre, int padre_id, int padre_pos, B_NodoEntry entry, int id_entry_hijo_izq, int id_entry_nodo)
 {
 {
-/*     int i;
-       B_NodoHeader h_izq, h_padre, h_nodo;
-       B_NodoEntry *c_izq, *c_padre, *c_nodo;
+       B_NodoHeader padre_h;
+       B_NodoEntry* padre_entries;
+       /* Leo claves y cabecera del nodo de la izquierda y del padre */
+       b_leer_header(padre, &padre_h);
+       padre_entries = b_leer_claves(padre, &padre_h);
+       /* Inserto en el hijo izquirdo la clave del padre */
+       b_insertar_en_nodo_con_lugar_sin_hijo_izq(idx, padre_entries[padre_pos].clave, padre_entries[padre_pos].dato,
+                       izq_id, izq, id_entry_hijo_izq);
+       /* Reemplazo clave del padre por clave nueva */
+       entry.hijo_derecho = id_entry_nodo;
+       padre_entries[padre_pos] = entry;
+}
 
 
-       b_leer_header(nodo, &h_nodo);
-       c_nodo = b_leer_claves(nodo, &h_nodo);
+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);
 
        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);
 
-       for(i=h_nodo.cant; i>0;i++)
-               c_nodo[i] = c_nodo[i-1];
-
-       h_nodo.cant++;
-       c_nodo[0] = c_padre[pos_clave];
-       c_nodo[0].hijo_derecho = -1; / * XXX * /
-       c_padre[pos_clave] = c_izq[h_izq.cant-1];
-       c_padre[pos_clave].hijo_derecho = izq_id;
-       h_izq.cant--;
+       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);
        b_actualizar_header(izq, &h_izq);
        b_actualizar_header(padre, &h_padre);
-       b_actualizar_header(nodo, &h_nodo);
-*/
-}
 
 
-static void b_fundir_nodo(char *izq, int izq_id, char *padre, int padre_id, char *der, int der_id, int pos_clave)
-{
+       /* 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)
 }
 
 static EMUFS_REG_ID b_insertar_dup_en_pos(INDICE *idx, INDICE_DATO pos, INDICE_DATO nuevo)
@@ -949,58 +1011,3 @@ static void desabreviar_claves(INDICE *idx, B_NodoEntry *array, B_NodoHeader *he
        free(primera);
 }
 
        free(primera);
 }
 
-int emufs_indice_b_ver(INDICE *idx, WINDOW *win, int w, int h, int id)
-{
-       int y=0;
-       B_NodoHeader header;
-       B_NodoEntry *claves;
-       char *nodo;
-       char tmp[100];
-       int i;
-       int proximo;
-
-       mvwaddstr(win, y++, 0, "Nombre : ");
-       waddstr(win, idx->nombre);
-
-       /* Muestro la raiz */
-       nodo = b_leer_nodo(idx, id);
-       b_leer_header(nodo, &header);
-       claves = b_leer_claves(nodo, &header);
-
-       mvwaddstr(win, y++, 0, "Nodo Nro ");
-       sprintf(tmp, "%d", id);
-       waddstr(win, tmp);
-       mvwaddstr(win, y++, 0, "Nivel =  ");
-       sprintf(tmp, "%d", header.nivel);
-       waddstr(win, tmp);
-       mvwaddstr(win, y++, 0, "Cantidad de hijo = ");
-       sprintf(tmp, "%d", header.cant);
-       waddstr(win, tmp);
-       mvwaddstr(win, y++, 0, "Padre = ");
-       sprintf(tmp, "%d", header.padre);
-       waddstr(win, tmp);
-
-       /* Muestro las claves */
-       mvwaddstr(win, y++, 0, "Claves");
-       wmove(win, y, 0);
-       sprintf(tmp, "%d", header.hijo_izquierdo);
-       waddstr(win, tmp);
-       for(i=0; i<header.cant; i++) {
-               sprintf(tmp, "(%d)%d",
-                               claves[i].clave.i_clave,
-/*                             claves[i].dato.id,
-                               claves[i].dato.bloque,*/
-                               claves[i].hijo_derecho
-               );
-               waddstr(win, tmp);
-       }
-       free(nodo);
-       wrefresh(win);
-       proximo = getch()-'0';
-       werase(win);
-       wrefresh(win);
-       emufs_indice_b_ver(idx, win, w, h, proximo);
-       werase(win);
-       wrefresh(win);
-}
-