X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/73a6ae0f1a0f50a482d164f24d5894105b4aea9f..e169f0ba3f5a5582b96e2d736f7800049454c7ab:/emufs/indice_bplus.h?ds=sidebyside diff --git a/emufs/indice_bplus.h b/emufs/indice_bplus.h index bb823e2..2f53529 100644 --- a/emufs/indice_bplus.h +++ b/emufs/indice_bplus.h @@ -18,7 +18,7 @@ typedef struct _index_dat_ { typedef struct nodo_b_plus { int nivel; /** Nivel del nodo */ int cant_claves; /** Cantidad de claves en el nodo */ - int *claves; /** Claves del nodo */ + CLAVE *claves; /** Claves del nodo */ int *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */ } NODO_B_PLUS; @@ -26,9 +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