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

leetcode:Path_Sum

时间:2014-11-07 20:53:33      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:leetcode   递归   二叉树   

一、     题目

         给你一个二叉树一和一个整数值,判断在树中是否存在从根节点到叶子节点的路径使得这个路径上的数值和为这个整数。

例如:二叉树              和值22

                 5

               /      \

             4        8

           /          /  \

         11      13   4

         /  \        \

        7    2      1

存在路径:5-4-11-2,5+4+11+2=22

二、     分析

        首先,这道题让我感觉最不好想的是

   1>  关于值的判断(PS:就算是根节点不为0,结果也可能是0,不要忘记值可以是负值或零的)

   2>  当sum=0,根节点为NULL时是为true还是false;事实证明只要根节点为NULL结果为false;

 那么接下来,一种方法我们可以继续使用递归,每次用sum减去当前左子树或右子树的值,再次调用该函数

 

/**
 * Definition for binary tree
 * 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&&sum==root->val) return true;
		return hasPathSum(root->left,sum-root->val)||hasPathSum(root->right,sum-root->val);
    }
};


leetcode:Path_Sum

标签:leetcode   递归   二叉树   

原文地址:http://blog.csdn.net/zzucsliang/article/details/40897845

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