solution.md 3.9 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 路径总和
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
<p>给你二叉树的根节点 <code>root</code> 和一个表示目标和的整数 <code>targetSum</code> ,判断该树中是否存在 <strong>根节点到叶子节点</strong> 的路径,这条路径上所有节点值相加等于目标和 <code>targetSum</code></p>

<p><strong>叶子节点</strong> 是指没有子节点的节点。</p>

<p> </p>

<p><strong>示例 1:</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2021/01/18/pathsum1.jpg" style="width: 500px; height: 356px;" />
<pre>
<strong>输入:</strong>root = [5,4,8,11,null,13,4,7,2,null,null,null,1], targetSum = 22
<strong>输出:</strong>true
</pre>

<p><strong>示例 2:</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2021/01/18/pathsum2.jpg" />
<pre>
<strong>输入:</strong>root = [1,2,3], targetSum = 5
<strong>输出:</strong>false
</pre>

<p><strong>示例 3:</strong></p>

<pre>
<strong>输入:</strong>root = [1,2], targetSum = 0
<strong>输出:</strong>false
</pre>

<p> </p>

<p><strong>提示:</strong></p>

<ul>
	<li>树中节点的数目在范围 <code>[0, 5000]</code></li>
	<li><code>-1000 <= Node.val <= 1000</code></li>
	<li><code>-1000 <= targetSum <= 1000</code></li>
</ul>

每日一练社区's avatar
每日一练社区 已提交
40
<p>以下<span style="color:red">错误</span>的选项是?</p>
每日一练社区's avatar
每日一练社区 已提交
41 42

## aop
43

每日一练社区's avatar
每日一练社区 已提交
44
### before
45

每日一练社区's avatar
每日一练社区 已提交
46
```cpp
每日一练社区's avatar
每日一练社区 已提交
47 48 49 50 51 52 53 54 55 56 57 58 59
#include <bits/stdc++.h>
using namespace std;

struct TreeNode
{
    int val;
    TreeNode *left;
    TreeNode *right;
    TreeNode() : val(0), left(nullptr), right(nullptr) {}
    TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
    TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
};
```
每日一练社区's avatar
每日一练社区 已提交
60

每日一练社区's avatar
每日一练社区 已提交
61
### after
62

每日一练社区's avatar
每日一练社区 已提交
63
```cpp
每日一练社区's avatar
每日一练社区 已提交
64 65 66 67

```

## 答案
68

每日一练社区's avatar
每日一练社区 已提交
69
```cpp
每日一练社区's avatar
每日一练社区 已提交
70 71 72 73 74
其他三个都是错的
```
## 选项

### A
每日一练社区's avatar
每日一练社区 已提交
75

每日一练社区's avatar
每日一练社区 已提交
76
```cpp
每日一练社区's avatar
每日一练社区 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
class Solution
{
public:
    bool hasPathSum(TreeNode *root, int sum)
    {
        if (root == NULL)
        {
            return false;
        }
        vector<TreeNode *> node_stack;
        vector<int> sum_stack;
        node_stack.push_back(root);
        sum_stack.push_back(sum - root->val);

        TreeNode *node;
        int curr_sum;
        while (!node_stack.empty())
        {
            node = node_stack.back();
            node_stack.pop_back();
            curr_sum = sum_stack.back();
            sum_stack.pop_back();
            if ((node->right == NULL) && (node->left == NULL) && (curr_sum == 0))
            {
                return true;
            }
            if (node->right != NULL)
            {
                node_stack.push_back(node->right);
                sum_stack.push_back(curr_sum - node->right->val);
            }
            if (node->left != NULL)
            {
                node_stack.push_back(node->left);
                sum_stack.push_back(curr_sum - node->left->val);
            }
        }
        return false;
    }
};
```

### B
每日一练社区's avatar
每日一练社区 已提交
120

每日一练社区's avatar
每日一练社区 已提交
121
```cpp
每日一练社区's avatar
每日一练社区 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151

class Solution
{
public:
    bool hasPathSum(TreeNode *root, int sum)
    {
        if (root == NULL)
            return false;
        stack<pair<TreeNode *, int>> s;
        s.push(make_pair(root, sum));
        TreeNode *node = root;
        int currSum;
        while (!s.empty())
        {
            node = s.top().first;
            currSum = s.top().second;
            s.pop();
            if (node->left == NULL && node->right == NULL && node->val == currSum)
                return true;
            if (node->right)
                s.push(make_pair(node->right, currSum - node->val));
            if (node->left)
                s.push(make_pair(node->left, currSum - node->val));
        }
        return false;
    }
};
```

### C
每日一练社区's avatar
每日一练社区 已提交
152

每日一练社区's avatar
每日一练社区 已提交
153
```cpp
每日一练社区's avatar
每日一练社区 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166
class Solution
{
public:
    bool hasPathSum(TreeNode *root, int sum)
    {
        if (!root)
            return false;
        if (!root->left && !root->right && root->val == sum)
            return true;
        return hasPathSum(root->left, sum - root->val) || hasPathSum(root->right, sum - root->val);
    }
};
```