这棵平衡二叉树叫什么名字?
BBTHMNN(h) = 具有最小节点数的平衡二叉树
BBTHMNN(h) = BBTHMNN(h-1) + BBTHMNN(h-2) + 1
满足上述公式的平衡二叉树的名称。我在网上查遍了,但没有找到这棵树的名字
BBTHMNN(h) = Balanced Binary Tree Have Minimum Number Of Nodes
BBTHMNN(h) = BBTHMNN(h-1) + BBTHMNN(h-2) + 1
Name of the balanced binary tree which satisfying the above formula. I have searched all over the internet but I couldn't found the name of the tree
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有点像斐波那契数列。也许是斐波那契树?
Kinda looks like the Fibonachi Series. Perhaps Fibonachi Tree?
你的问题对我来说并不完全清楚,所以我可能在这里误解你,但听起来你可能正在寻找 AVL 树。这些经常出现在家庭作业中,因为它们是第一个树数据结构。
Your question isn't entirely clear to me, so I may be misunderstanding you here, but it sounds like you might be looking for an AVL tree. These often show up in homework as they were the first tree data structures.
知道您不可能搜索整个互联网,至少不能正确搜索,我将向您指出最简单的资源,可以帮助您为您的问题找到更好的搜索词:维基百科。
Knowing that you can not have searched the entire internet, at least not properly, I'll point you to the simplest resource that may help you find better search terms for your question: Wikipedia.