当前位置:   article > 正文

C++ | Leetcode C++题解之第112题路径总和

C++ | Leetcode C++题解之第112题路径总和

题目:

题解:

  1. class Solution {
  2. public:
  3. bool hasPathSum(TreeNode *root, int sum) {
  4. if (root == nullptr) {
  5. return false;
  6. }
  7. if (root->left == nullptr && root->right == nullptr) {
  8. return sum == root->val;
  9. }
  10. return hasPathSum(root->left, sum - root->val) ||
  11. hasPathSum(root->right, sum - root->val);
  12. }
  13. };
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/一键难忘520/article/detail/799388
推荐阅读
相关标签
  

闽ICP备14008679号