/** 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);
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;
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) {
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");
/* 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);
}
}
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)