Path Sum
Last updated
Last updated
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
//using preorder traversal (passing info to the children)
//each child
class Solution {
public:
bool hasPathSum(TreeNode* root, int sum)
{
if (!root)
return false;
//if leaf return specific value
if(!root->left && !root->right)
//if it has value that fulfill the request
return root->val-sum == 0;
else //has more leafs
return hasPathSum(root->left, sum - root->val)
|| hasPathSum(root->right, sum - root->val);
}
};