X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/568a401891b45d9764b41e5c2091a55178691611..e169f0ba3f5a5582b96e2d736f7800049454c7ab:/emufs/indice_bplus.h diff --git a/emufs/indice_bplus.h b/emufs/indice_bplus.h index 8aa2380..2f53529 100644 --- a/emufs/indice_bplus.h +++ b/emufs/indice_bplus.h @@ -26,11 +26,10 @@ typedef struct nodo_b_plus { int emufs_b_plus_crear(INDICE *idx); int emufs_b_plus_get_bloque(INDICE *idx, INDEX_DAT *query, int num_node); int emufs_b_plus_insertar(INDICE *idx, INDEX_DAT *query); -int emufs_b_plus_actualizar_nodo(INDEX_DAT *dataset); -int emufs_b_plus_buscar(); -int emufs_b_plus_destuir(); int emufs_b_plus_eliminar(INDICE *idx, CLAVE key, int num_node); int b_plus_existe_clave(INDICE *idx, INDEX_DAT *query, int num_node); NODO_B_PLUS *b_plus_leer_nodo(INDICE *idx, int num); - +int b_plus_buscar_prepost(INDICE *idx, CLAVE key, int num_node, INDEX_DAT *prepostkey, int search_type); +int emufs_b_plus_reemplazar_clave(INDICE *idx, CLAVE key, INDEX_DAT query, int num_node); +int b_plus_destruir_nodo(NODO_B_PLUS *nodo); #endif