/**
* Definition for binary tree
* 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==NULL){
return false;
}
if(root->left==NULL&&root->right==NULL){
return root->val==sum;
}
else if(root->left!=NULL&&root->right==NULL){
return hasPathSum(root->left,sum-root->val);
}
else if(root->left==NULL&&root->right!=NULL){
return hasPathSum(root->right,sum-root->val);
}
else{
return hasPathSum(root->left,sum-root->val)||hasPathSum(root->right,sum-root->val);
}
}
};
LeetCode - 112 Path Sum
最新推荐文章于 2021-12-24 23:44:26 发布