一、 题目
给你一个二叉树一和一个整数值,判断在树中是否存在从根节点到叶子节点的路径使得这个路径上的数值和为这个整数。
例如:二叉树 和值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); } };
原文地址:http://blog.csdn.net/zzucsliang/article/details/40897845