leetcode-----112. 路径总和

Posted 景云

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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;
        sum -= root->val;
        if (!root->left && !root->right) return !sum;
        return root->left && hasPathSum(root->left, sum) || root->right && hasPathSum(root->right, sum);
    }
};

以上是关于leetcode-----112. 路径总和的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 112. 路径总和c++/java详细题解

LeetCode-112-路径总和

Leetcode112.路径总和

Leetcode 112. 路径总和

图解 | LeetCode #112 路径总和

LeetCode 112. 路径总和 Java