首页 > 其他 > 详细

Path Sum

时间:2015-07-22 22:32:48      阅读:240      评论:0      收藏:0      [点我收藏+]
/**
 * 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==NULL) return false;
        if(root->left ==NULL && root->right == NULL) return root->val==sum;
        if(hasPathSum(root->left,sum-root->val))return true;
        if(hasPathSum(root->right,sum-root->val))return true;
        return false;
    }
};

 

Path Sum

原文:http://www.cnblogs.com/julie-yang/p/4668768.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!