Path Sum

方法:采用递归的方法,方法与maxdepth类似

/**
 * 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 == nullptr)
            return false;
        
        if(root->left == nullptr && root->right == nullptr && root->val == sum)
            return true;
        
        return hasPathSum(root->left, sum - root->val) || hasPathSum(root->right, sum - root->val);
    }
};
posted @ 2017-04-18 19:52  chengcy  Views(98)  Comments(0)    收藏  举报