很好的 ADT 来实现 BTREE
我应该使用什么数据结构来实现 BTree?为什么?
What data structure should I use to implement a BTree? Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我应该使用什么数据结构来实现 BTree?为什么?
What data structure should I use to implement a BTree? Why?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用以下类创建一个 btree 节点。它有 7 个键和 8 个指针。你可以根据btree节点的定义来改变它并对其进行操作
You can create a btree node using following class.. it is having 7 keys and 8 pointers. u can change it according to the definition of btree node and perform operations on it
这样,您将拥有指向 BNode 的每个节点的指针,以指向左右子树......
This way you will have pointers to every node of the BNode to point to the right and left subtree....
几天前我用LinkedList实现了BTree(删除O(1),插入O(1))。我会告诉你我的代码。这是我的 BNode 结构:
I implemented BTree in a few days ago with LinkedList (delete O(1), insert O(1)). I will show you my code. Here is my BNode structure: