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

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

  • 相关阅读:
    pytorch_基于cifar创建自己的数据集并训练
    Pytorch_3.8_多层感知机
    Pytorch_3.6_ SOFTMAX回归的从零实现
    Linux(debian)下的Python程序守护进程
    Ubuntu16.04安装OpenCV3.4.3
    Beaglebone black 安装docker
    电脑与虚拟机ping
    Beaglebone升级Python3.7过程
    多图上传预览
    放大镜代码
  • 原文地址:https://www.cnblogs.com/yancea/p/7516626.html
Copyright © 2011-2022 走看看