tmp->sig = NULL;
tmp->size_claves = 0;
tmp->size_hijos = 0;
+ tmp->keybucket = NULL;
fprintf(stderr, "TIPO ARBOL= %d\n", tmp->tipo);
switch (tmp->tipo) {
tmp->size_claves = (tmp->tam_bloque - SIZE_B_PLUS_HEADER - sizeof(CLAVE))/2;
tmp->size_hijos = tmp->size_claves + sizeof(CLAVE);
emufs_b_plus_crear(tmp);
+ tmp->obtener_menor_clave = emufs_b_plus_obtener_menor_clave;
+ tmp->obtener_mayor_clave = emufs_b_plus_obtener_mayor_clave;
PERR("AÚN NO IMPLEMENTADO DEL TODO!!!!!!!!");
break;
}
}
return 0;
}
-