码迷,mamicode.com
首页 > 其他好文 > 详细

路径总和--leetcode112

时间:2020-07-07 10:22:49      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:code   leetcode   return   lazy   png   binary   方法   efi   ret   

技术图片

 

 方法1:递归

 
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */


bool hasPathSum(struct TreeNode* root, int sum){
    if(root==NULL)
    {
        return false;
    }
    if(root->left==NULL&&root->right==NULL)
    {
        return sum==root->val;
    }
    return hasPathSum(root->left,sum-root->val)||hasPathSum(root->right,sum-root->val);
}
技术图片

路径总和--leetcode112

标签:code   leetcode   return   lazy   png   binary   方法   efi   ret   

原文地址:https://www.cnblogs.com/sbb-first-blog/p/13258872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!