在计算AVL树高度时,为什么还要添加1个?

发布于 2025-01-24 18:53:42 字数 180 浏览 0 评论 0原文

在更新AVL旋转实现中的子树的高度时,我在示例中注意到代码是高度功能是

x->height = max(height(x->left), height(x->right)) +1;

有人知道+1来自何处,为什么?

谢谢!

While updating the heights of my subtrees in an AVL rotation implementation, I noticed in the example the code that the height function is

x->height = max(height(x->left), height(x->right)) +1;

Does anyone know where the +1 comes from and why?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

壹場煙雨 2025-01-31 18:53:42

没有看到任何实际的代码,我假设最大(x->左,高度(x->右)都不包括您调用函数的节点。 1以获取当前节点以获得总高度。

Without seeing any actual code, I'm assuming max(height(x->left, height(x->right) doesn't include the node you are calling the function on. Height function returns whichever subtree is higher and + 1 for your current node to get the total height.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文