X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/e169f0ba3f5a5582b96e2d736f7800049454c7ab..a680ab304d20541f4bf03709354b7b7c2ffdf993:/emufs/indice_bplus.h diff --git a/emufs/indice_bplus.h b/emufs/indice_bplus.h index 2f53529..012eb29 100644 --- a/emufs/indice_bplus.h +++ b/emufs/indice_bplus.h @@ -31,5 +31,8 @@ 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); +CLAVE emufs_b_plus_obtener_menor_clave(INDICE *idx); +CLAVE emufs_b_plus_obtener_mayor_clave(INDICE *idx); +CLAVE emufs_b_plus_obtener_sig_clave(EMUFS *emu, CLAVE key); int b_plus_destruir_nodo(NODO_B_PLUS *nodo); #endif