博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
112. Path Sum
阅读量:5307 次
发布时间:2019-06-14

本文共 574 字,大约阅读时间需要 1 分钟。

problem

 code

回归方法

/** * 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;//        return (hasPathSum(root->left, sum-root->val) || hasPathSum(root->right, sum-root->val));            }};

 

 

 

 参考

1.;

 完

转载于:https://www.cnblogs.com/happyamyhope/p/10043504.html

你可能感兴趣的文章