zoukankan      html  css  js  c++  java
  • 563. Binary Tree Tilt (Easy)

    Given a binary tree, return the tilt of the whole tree.

    The tilt of a tree node is defined as the absolute difference between the sum of all left subtree node values and the sum of all right subtree node values. Null node has tilt 0.

    The tilt of the whole tree is defined as the sum of all nodes' tilt.

    Example:

    Input: 
             1
           /   
          2     3
    Output: 1
    Explanation: 
    Tilt of node 2 : 0
    Tilt of node 3 : 0
    Tilt of node 1 : |2-3| = 1
    Tilt of binary tree : 0 + 0 + 1 = 1

    Note:

    1. The sum of node values in any subtree won't exceed the range of 32-bit integer.
    2. All the tilt values won't exceed the range of 32-bit integer.

    题意:计算二叉树的tilt(倾斜值)
    思路:遍历二叉树,递归求二叉树子树和;

    # Definition for a binary tree node.
    # class TreeNode():
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution():
        def findTilt(self, root):
            """
            :type root: TreeNode
            :rtype: int
            """
        
            self.ans = 0
            def sumNodes(root):
                if not root:
                    return 0
                left_sum = sumNodes(root.left)
                right_sum = sumNodes(root.right)
                self.ans += abs(left_sum - right_sum)
                return root.val + left_sum + right_sum
            sumNodes(root)
            return self.ans

    注意:是分别计算左右子树所有节点之和的差值;

  • 相关阅读:
    laydate 监听日期切换
    done
    Could not find result map java.util.HashMap
    toFixed
    js追加元素
    input只能输入数字或两位小数
    JSTree[树形控件]
    JSp获取到当前用户的全部session
    layui select change
    大型网站技术架构读后感
  • 原文地址:https://www.cnblogs.com/yancea/p/7516626.html
Copyright © 2011-2022 走看看