Leetcode 112. 路径总和

Posted randyniu

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 visit(TreeNode* r, int want, int now)
    {
        if(r==NULL) 
            return false;
        if(r->left==NULL && r->right==NULL)
        {
            //leaf
            return (now+r->val==want);
        }
        else
        {
            return visit(r->left, want, now+r->val) || visit(r->right, want, now+r->val);
        }
    }
    
    bool hasPathSum(TreeNode* root, int sum) {
        if(root == NULL)
            return false;
        return visit(root, sum, 0);
    }
};

 

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

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

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

LeetCode-112-路径总和

Leetcode112.路径总和

leetcode算法112. 路径总和

Leetcode 112. 路径总和