+int b_plus_split_child(INDEXSPECS *idx, int numparent, NODO_B_PLUS *parent, int ithchild, NODO_B_PLUS *fullnode)
+{
+ /* locals */
+ int minclaves = ceil(idx->size_hijos/sizeof(int)/2)-1;
+ int maxhijos = idx->size_hijos/sizeof(int);
+ 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. */
+ 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 y encadeno si es hoja */
+ numbrother = b_plus_get_num_nodo(idx);
+ if (fullnode->nivel == 0) fullnode->hijos[minclaves] = 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];
+ parent->cant_claves++;
+
+ /* Grabo los nodos en disco */
+ b_plus_grabar_nodo(idx,fullnode,parent->hijos[ithchild]);
+ b_plus_grabar_nodo(idx,brother,numbrother);
+ b_plus_grabar_nodo(idx,parent,numparent);
+
+ b_plus_destruir_nodo(brother);
+
+ return 0;
+}
+
+
+int b_plus_insert_nonfull(INDEXSPECS *idx, NODO_B_PLUS *nodo, int num_nodo, INDEX_DAT *query)