Reputation: 6037
How can I store a B+ tree structure in a file in Java?
After creating a B+ tree, how can I persistently store it in a file instead of using memory? Can I store every node in the file?
Upvotes: 0
Views: 618
Reputation: 2159
You could try using serialization and simply writing the whole object into a file.
Upvotes: 3