首页 > 其他 > 详细

663. Equal Tree Partition

时间:2017-11-24 10:16:19      阅读:271      评论:0      收藏:0      [点我收藏+]

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.

 

 

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    bool checkEqualTree(TreeNode* root) {
         int sum = computeTreeSum(root);
         if(sum==0) return cnts[0]>1;
         return sum%2==0&&cnts[sum/2]>0?true:false;
    }
private:
    int computeTreeSum(TreeNode *root)
    {
        if(!root) return 0;
        int sum = root->val+computeTreeSum(root->left)+computeTreeSum(root->right);
        cnts[sum]++;
        return sum;
    }
    unordered_map<int, int> cnts;
};

 

663. Equal Tree Partition

原文:http://www.cnblogs.com/jxr041100/p/7889160.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!