-
Notifications
You must be signed in to change notification settings - Fork 12
/
EqualTreePartition.cpp
50 lines (48 loc) · 1.35 KB
/
EqualTreePartition.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* 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:
int sum(TreeNode* root){
if(!root){
return 0;
}
return root->val + sum(root->left) + sum(root->right);
}
bool check(TreeNode* root, int total){
if(!root){
return false;
}
else if(!root->left && !root->right){
return false;
}
else if(root->left && root->right){
if(sum(root->left) == total+root->val+sum(root->right)){
return true;
}
if(sum(root->right) == total+root->val+sum(root->left)){
return true;
}
return check(root->left, total+root->val+sum(root->right)) || check(root->right, total+root->val+sum(root->left));
}
else if(root->left){
if(sum(root->left) == total+root->val){
return true;
}
return check(root->left, total+root->val);
}
if(sum(root->right) == total+root->val){
return true;
}
return check(root->right, total+root->val);
}
bool checkEqualTree(TreeNode* root) {
return check(root, 0);
}
};