您的位置:首页 > 编程语言 > C语言/C++

Path Sum

2016-07-17 22:31 260 查看
一、问题描述

Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum.
For example:
Given the below binary tree and 
sum
= 22
,
5
/ \
4   8
/   / \
11  13  4
/  \      \
7    2      1


return true, as there exist a root-to-leaf path 
5->4->11->2
 which sum is 22.
二、思路

这题有点小坑,开始我写的代码的这一句

if(root -> val == sum && root -> left ==NULL &&root -> right ==NULL) return true;没有加
&& root -> left ==NULL &&root -> right ==NULL导致无法通过,原因是:只有当左右子树为空的情况下,即只有一个根节点的情况且根节点数据域的值和sum值相等,才返回true,只要有子树非空即使根节点数据域的值和sum值相等,也返回false。
三、代码

/**
* 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 -> val == sum && root -> left ==NULL &&root -> right ==NULL) return true;
else return hasPathSum(root -> left,sum - root -> val) || hasPathSum(root -> right,sum - root -> val);
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  C++ leetcode