如何存储 b+ java中文件中的树?
如何在 Java 中将 B+ 树结构存储在文件中?
创建B+树后,如何将其持久存储在文件中而不使用内存?我可以存储文件中的每个节点吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 序列化 并将整个对象写入文件中。
You could try using serialization and simply writing the whole object into a file.