]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indice_bplus.h
Listo busqueda de sucesor, predecesor de 1 clave, tambien conocido como el afamado...
[z.facultad/75.06/emufs.git] / emufs / indice_bplus.h
index bb823e2a7d56ca04ccb922370959b46e6f9849d5..81963fcbf47c9c57d75fc7bcd26c919fc68a933a 100644 (file)
@@ -18,7 +18,7 @@ typedef struct _index_dat_ {
 typedef struct nodo_b_plus {\r
        int nivel; /** Nivel del nodo */\r
        int cant_claves; /** Cantidad de claves en el nodo */\r
-       int *claves; /** Claves del nodo */\r
+       CLAVE *claves; /** Claves del nodo */\r
        int *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */\r
 } NODO_B_PLUS;\r
 \r
@@ -29,6 +29,9 @@ int emufs_b_plus_insertar(INDICE *idx, INDEX_DAT *query);
 int emufs_b_plus_actualizar_nodo(INDEX_DAT *dataset);\r
 int emufs_b_plus_buscar();\r
 int emufs_b_plus_destuir();\r
+int emufs_b_plus_eliminar(INDICE *idx, CLAVE key, int num_node);\r
+int b_plus_existe_clave(INDICE *idx, INDEX_DAT *query, int num_node);\r
 NODO_B_PLUS *b_plus_leer_nodo(INDICE *idx, int num);\r
+int b_plus_buscar_prepost(INDICE *idx, CLAVE key, int num_node, CLAVE *prepostkey, int search_type);\r
 \r
 #endif