663. Equal Tree Partition
Problem:
Given a binary tree with
n
nodes, your task is to check if it's possible to partition the tree to two trees which have the equal sum of values after removing exactly one edge on the original tree.
Example 1:
Input: 5 / \ 10 10 / \ 2 3 Output: True Explanation: 5 / 10 Sum: 15 10 / \ 2 3 Sum: 15
Example 2:
Input: 1 / \ 2 10 / \ 2 20 Output: False Explanation: You can't split the tree into two trees with equal sum after removing exactly one edge on the tree.
Note:
- The range of tree node value is in the range of [-100000, 100000].
- 1 <= n <= 10000
Analysis:
Get all sums, check whether the collections of sums contains totalSum/2. Do not include total sum to set of sums, if the total sum is 0, it will qualify.
Solution:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | class Solution { public boolean checkEqualTree(TreeNode root) { if (root == null) return false; Set<Integer> set = new HashSet<>(); int sum = helper(root.left, set) + helper(root.right, set) + root.val; return sum % 2 == 0 && set.contains(sum / 2); } private int helper(TreeNode root, Set<Integer> set) { if (root == null) return 0; int sum = root.val + helper(root.left, set) + helper(root.right, set); set.add(sum); return sum; } } |
评论
发表评论