LeetCode - Easy - 563. Binary Tree Tilt

红太狼 2022-11-07 15:55 128阅读 0赞

Topic

  • Tree
  • Depth-first Search
  • Recursion

Description

https://leetcode.com/problems/binary-tree-tilt/

Given the root of a binary tree, return the sum of every tree node’s tilt.

The tilt of a tree node is the absolute difference between the sum of all left subtree node values and all right subtree node values. If a node does not have a left child, then the sum of the left subtree node values is treated as 0. The rule is similar if there the node does not have a right child.

Example 1:

4b088aeba64d9dc98918c36306144aaa.png

  1. Input: root = [1,2,3]
  2. Output: 1
  3. Explanation:
  4. Tilt of node 2 : |0-0| = 0 (no children)
  5. Tilt of node 3 : |0-0| = 0 (no children)
  6. Tilt of node 1 : |2-3| = 1 (left subtree is just left child, so sum is 2; right subtree is just right child, so sum is 3)
  7. Sum of every tilt : 0 + 0 + 1 = 1

Example 2:

ca5e1673d094bf4f4a330505c4053d7a.png

  1. Input: root = [4,2,9,3,5,null,7]
  2. Output: 15
  3. Explanation:
  4. Tilt of node 3 : |0-0| = 0 (no children)
  5. Tilt of node 5 : |0-0| = 0 (no children)
  6. Tilt of node 7 : |0-0| = 0 (no children)
  7. Tilt of node 2 : |3-5| = 2 (left subtree is just left child, so sum is 3; right subtree is just right child, so sum is 5)
  8. Tilt of node 9 : |0-7| = 7 (no left child, so sum is 0; right subtree is just right child, so sum is 7)
  9. Tilt of node 4 : |(3+5+2)-(9+7)| = |10-16| = 6 (left subtree values are 3, 5, and 2, which sums to 10; right subtree values are 9 and 7, which sums to 16)
  10. Sum of every tilt : 0 + 0 + 0 + 2 + 7 + 6 = 15

Example 3:

37dd2a25686024fa210a0e3714f5eb0e.png

  1. Input: root = [21,7,14,1,1,2,2,3,3]
  2. Output: 9

Constraints:

  • The number of nodes in the tree is in the range [0, 10⁴].
  • -1000 <= Node.val <= 1000

Analysis

运用二叉树的后序遍历算法。

Submission

  1. import com.lun.util.BinaryTree.TreeNode;
  2. public class BinaryTreeTilt {
  3. public int findTilt(TreeNode root) {
  4. int[] sum = { 0};
  5. findTilt(root, sum);
  6. return sum[0];
  7. }
  8. private int findTilt(TreeNode root, int[] sum) {
  9. if (root == null) return 0;
  10. int leftSum = findTilt(root.left, sum);
  11. int rightSum = findTilt(root.right, sum);
  12. sum[0] += Math.abs(leftSum - rightSum);
  13. return leftSum + rightSum + root.val;
  14. }
  15. }

Test

  1. import static org.junit.Assert.*;
  2. import org.junit.Test;
  3. import com.lun.util.BinaryTree;
  4. public class BinaryTreeTiltTest {
  5. @Test
  6. public void test() {
  7. BinaryTreeTilt obj = new BinaryTreeTilt();
  8. assertEquals(1, obj.findTilt(BinaryTree.integers2BinaryTree(1, 2, 3)));
  9. assertEquals(15, obj.findTilt(BinaryTree.integers2BinaryTree(4, 2, 9, 3, 5, null, 7)));
  10. assertEquals(9, obj.findTilt(BinaryTree.integers2BinaryTree(21, 7, 14, 1, 1, 2, 2, 3, 3)));
  11. }
  12. }

发表评论

表情:
评论列表 (有 0 条评论,128人围观)

还没有评论,来说两句吧...

相关阅读