本文主要是介绍【Python】【难度:简单】Leetcode 563. 二叉树的坡度,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
给定一个二叉树,计算整个树的坡度。
一个树的节点的坡度定义即为,该节点左子树的结点之和和右子树结点之和的差的绝对值。空结点的的坡度是0。
整个树的坡度就是其所有节点的坡度之和。
示例:
输入:
1
/ \
2 3
输出: 1
解释:
结点的坡度 2 : 0
结点的坡度 3 : 0
结点的坡度 1 : |2-3| = 1
树的坡度 : 0 + 0 + 1 = 1
注意:
任何子树的结点的和不会超过32位整数的范围。
坡度的值不会超过32位整数的范围。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/binary-tree-tilt
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = Noneclass Solution(object):def findTilt(self, root):""":type root: TreeNode:rtype: int"""def helper(root):if root is None:return 0lsum=helper(root.left)rsum=helper(root.right)self.res+=abs(lsum-rsum)return root.val+lsum+rsumself.res=0helper(root)return self.res
执行结果:
通过
显示详情
执行用时 :36 ms, 在所有 Python 提交中击败了99.29%的用户
内存消耗 :15.8 MB, 在所有 Python 提交中击败了100.00%的用户
这篇关于【Python】【难度:简单】Leetcode 563. 二叉树的坡度的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!