Posts by enuriel • 73 points
2 posts
-
6
votes2
answers934
viewsQ: How to create an index file using B+ tree
I have a B+ tree that acts as the index of a data file. This index must be saved in an index file. A struct node or node of the B+ tree is: typedef struct node { void ** pointers; int * keys; struct…
-
1
votes1
answer161
viewsQ: Function that returns pointer gives crash when trying to return pointer to main program
I have this function that retrieves a record from a binary file already filled with records - such records are structured as Node - and returns it to the program. Only in the return of "i" for the…