c_cpp 112.路径总和

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 112.路径总和相关的知识,希望对你有一定的参考价值。

//Runtime: 4 ms, faster than 100.00% 

class Solution {
public:
    bool hasPathSum(TreeNode* root, int sum) {
        if(root == nullptr)
            return false;
        sum -= root->val;
        if((root->left == nullptr) && (root->right == nullptr))
            return sum == 0;
        return hasPathSum(root->left,sum) || hasPathSum(root->right,sum);
    }
};

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

Leetcode112.路径总和

Lc112_路径总和

LeetCode第112题—路径总和—Python实现

112 Path Sum 路径总和

LeetCode-112-路径总和

112. 路径总和