查看“Binary tree”的源代码
←
Binary tree
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看和复制此页面的源代码。
[[Category:刷题]] 二叉树。 == 求深度的变种 == 例如 LeetCode [https://leetcode.com/problems/balanced-binary-tree/ 110] 和 [https://leetcode.com/problems/diameter-of-binary-tree/ 543],所求值和深度有关,所以在求深度的递归过程中进行一些操作。 === LeetCode 543. Diameter of Binary Tree === 树的直径为节点左右深度之和的最大值。便在计算深度时顺便遍历每个节点求最大的深度和,就为直径: <syntaxhighlight lang=python> def diameterOfBinaryTree(self, root: Optional[TreeNode]) -> int: diameter = 0 def rec(root): nonlocal diameter if root is None: return 0 left = rec(root.left) right = rec(root.right) diameter = max(diameter, left + right) return max(left, right) + 1 rec(root) return diameter </syntaxhighlight>
返回至
Binary tree
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
最近更改
随机页面
MediaWiki帮助
工具
链入页面
相关更改
特殊页面
页面信息