-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_0938_rangeSumBST.cc
69 lines (65 loc) · 1.29 KB
/
Problem_0938_rangeSumBST.cc
1
2
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <queue>
#include <vector>
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) {}
};
class Solution
{
public:
int f(TreeNode* cur, int low, int high)
{
if (cur == nullptr)
{
return 0;
}
if (cur->val < low)
{
return f(cur->right, low, high);
}
if (cur->val > high)
{
return f(cur->left, low, high);
}
return cur->val + f(cur->left, low, high) + f(cur->right, low, high);
}
// dfs
int rangeSumBST1(TreeNode* root, int low, int high) { return f(root, low, high); }
// bfs
int rangeSumBST2(TreeNode* root, int low, int high)
{
int sum = 0;
queue<TreeNode*> q;
q.push(root);
while (!q.empty())
{
TreeNode* cur = q.front();
q.pop();
if (cur == nullptr)
{
continue;
}
if (cur->val < low)
{
q.push(cur->right);
}
else if (cur->val > high)
{
q.push(cur->left);
}
else
{
sum += cur->val;
q.push(cur->left);
q.push(cur->right);
}
}
return sum;
}
};