c - Fully Persistent B+ Tree -


i'm trying implement b+ tree (in c language) each key being data(int/float/string) , corresponding value list, size not fixed.

i want store tree in file , access later on, when required. may consider implementation follows:

  • each search key corresponds page in file and
  • each page contains set of values corresponding key

the problem is: cannot assign page key, may consume little , waste entire page. need persistent way of implementing b+ tree in file system, instead of main-memory.

check disk-based b-tree implementation out, might help.

and paper titled fully persistent b+-trees


Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -