Search code examples
javadata-structuresb-tree

Btree implementation


I'm writing the model of database which is using the B+ tree datastructure. I know how to implement this structure on Java using only RAM. But I need to write data on the disk(each time when I write, modify or delete)

How can I implement this structure?


Solution

  • See if this is helpful: How does the file system store a b-tree?