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
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