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

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

时间:2020-07-26 19:00:19      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:null   ||   ems   class   int   struct   treenode   href   turn   

代码

/**
 * 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. 路径总和

标签:null   ||   ems   class   int   struct   treenode   href   turn   

原文地址:https://www.cnblogs.com/clown9804/p/13380292.html

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