]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indice_bplus.h
Ya funciona nuevamente el Arbol B+ con su test correspondiente, pero ahora ya se...
[z.facultad/75.06/emufs.git] / emufs / indice_bplus.h
index bb823e2a7d56ca04ccb922370959b46e6f9849d5..73b3e806b5c0cbb0d7d8f2b60dd93110fdd8ae9d 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
 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 *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */\r
 } NODO_B_PLUS;\r
 \r