2-3 c++中搜索树的实现
我正在寻找 2-3 搜索树的 C++ 实现
有人在网络上的任何地方遇到过这种类型的东西吗?
谢谢。
I'm looking for a c++ implementation of 2-3 search tree
Have anybody come across something of this sort anywhere on the net?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能对未来有帮助。
http://cplusplus.kurttest.com/notes/tree23.html
this one might be helpful for future.
http://cplusplus.kurttest.com/notes/tree23.html
http://www.cs.ucr.edu/cs14/cs14_06win /slides/2-3_trees_covered.pdf
虽然它没有给出实现,但它提供了足够的背景来实现 2-3 棵树(包括节点结构、插入、删除、遍历、搜索等)。
http://www.cs.ucr.edu/cs14/cs14_06win/slides/2-3_trees_covered.pdf
While it does not give an implementaion, it gives enough background to implement 2-3 trees (including node structure, insertions, deletions, traversals, search etc. ).