+
+int b_plus_destruir_nodo(NODO_B_PLUS *nodo)
+{
+ free(nodo->claves);
+ free(nodo->hijos);
+ free(nodo);
+ return 0;
+}
+
+int b_plus_split_child(INDEXSPECS *idx, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode)
+{
+ /* locals */
+ int minclaves = ceil(idx->size_hijos/sizeof(int)/2)-1;
+ int numbrother,j = 0;
+ int es_interno = 1;
+
+ NODO_B_PLUS *brother = b_plus_crearnodo(idx);
+ brother->nivel = fullnode->nivel; /* Idem nivel que el que se parte */
+
+ /* Si estoy en una hoja, la parte derecha del partido tendra minclaves+1 */
+ /* pues el ancla se debe repetir ademas de subir */
+ if (brother->nivel == 0) {
+ brother->cant_claves = minclaves+1;
+ es_interno = 0;
+ }
+ else brother->cant_claves = minclaves;
+
+ /* Copio las claves al brother derecho */
+ for (j = 0; j < brother->cant_claves; ++j)
+ brother->claves[j] = fullnode->claves[j+minclaves+es_interno];
+
+ /* Copio los hijos ya sea para hoja o no hoja. Copia Chain Also! */
+ for (j = 0; j < brother->cant_claves+1; ++j)
+ brother->hijos[j] = fullnode->hijos[j+minclaves+es_interno];
+
+ /* Ahora me ocupo del nodo que se partio */
+ fullnode->cant_claves = minclaves;
+ /* Obtengo numero de nodo para brother, para encadenar */
+ numbrother = b_plus_get_num_nodo(idx);
+ fullnode->hijos[idx->size_hijos/sizeof(int)-1] = numbrother;
+
+ /* Ahora fixeamos el padre, apuntando al nuevo hijo */
+ for (j = parent->cant_claves; j > ithchild; --j)
+ parent->hijos[j+1] = parent->hijos[j];
+ parent->hijos[ithchild+1] = numbrother;
+
+ /* Idem pero subo la median key */
+ for (j = parent->cant_claves-1; j >= ithchild; --j)
+ parent->claves[j+1] = parent->claves[j];
+ parent->claves[ithchild] = fullnode->claves[minclaves];
+
+ return 0;
+}
+
+
+int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDEX_DAT *query)
+{
+ int i, num_nodo_hijo;
+ NODO_B_PLUS *hijo;
+
+ i = nodo->cant_claves;
+ if ( nodo->nivel == 0 ){
+ while ( i >= 1 && query->clave.i_clave < nodo->claves[i] ){
+ nodo->claves[i+1] = nodo->claves[i];
+ i--;
+ }
+ nodo->claves[i+1] = query->clave.i_clave;
+ nodo->cant_claves++;
+ b_plus_destruir_nodo(nodo);
+ b_plus_grabar_nodo(idx, nodo, num_nodo);
+ } else {
+ while ( i >= 1 && query->clave.i_clave < nodo->claves[i] )
+ i--;
+ i++;
+ num_nodo_hijo = nodo->hijos[i-1];
+ hijo = b_plus_leer_nodo(idx, num_nodo_hijo);
+ if ( hijo->cant_claves == idx->size_claves/sizeof(int) ) {
+ b_plus_split_child(idx, nodo, i, hijo);
+ if ( query->clave.i_clave > nodo->claves[i] )
+ i++;
+ }
+ b_plus_insert_nonfull(idx, hijo, num_nodo_hijo, query);
+ }
+ b_plus_destruir_nodo(hijo);
+ return 0;
+}
+
+int b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query)
+{
+ NODO_B_PLUS *raiz;
+
+ raiz = b_plus_leer_nodo(idx, 0);
+ if ( raiz->cant_claves == idx->size_claves/sizeof(int) ) {
+ NODO_B_PLUS *new_root = b_plus_crearnodo(idx);
+ new_root->nivel = raiz->nivel + 1;
+ new_root->hijos[0] = b_plus_get_num_nodo(idx);
+ b_plus_grabar_nodo(idx, raiz, new_root->hijos[0]);
+ b_plus_grabar_nodo(idx, new_root, 0);
+ b_plus_split_child(idx, new_root, 1, raiz);
+ b_plus_insert_nonfull(idx, new_root, 0, query);
+ } else b_plus_insert_nonfull(idx, raiz, 0, query);
+
+ return 0;
+}
+
+int b_plus_get_num_nodo(INDEXSPECS *idx)
+{
+ FILE *fp;
+ int num;
+
+ fp = fopen(idx->filename, "r+");
+ if (fp == NULL) return -1;
+
+ num = ftell(fp)/sizeof(NODO_B_PLUS);
+ fclose(fp);
+ return num;
+}