112. Path Sum
Last updated
Last updated
/**
* 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 hasPathSum(TreeNode* root, int sum) {
if (!root) {
return false;
}
return checkSum(root, sum);
}
private:
bool checkSum(TreeNode* root, int sum) {
if (!root) {
if (sum == 0) {
return true;
} else {
return false;
}
}
//cout<<sum<<endl;
if (root->left == NULL && root->right == NULL) {
return sum == root->val;
}
if (root->left && checkSum(root->left, sum - root->val)) {
return true;
}
if (root->right && checkSum(root->right, sum - root->val)) {
return true;
}
return false;
}
};