Leetcode 112. 路径总和

递归

/**
 * 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;
        if(!root->left && !root->right) return sum==root->val;
        if(root->left && hasPathSum(root->left,sum-root->val)) return true;
        return (root->right && hasPathSum(root->right,sum-root->val));
    }
};

你可能感兴趣的:(Leetcode 112. 路径总和)