-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path112_PathSum.cpp
45 lines (42 loc) · 1.73 KB
/
112_PathSum.cpp
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
#include "stdafx.h"
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
TreeNode(int x, TreeNode *_left, TreeNode *_right) : val(x), left(_left), right(_right) {}
};
//-----------------------------------------------------------------
class Solution {
public:
bool hasPathSum(TreeNode *root, int sum) {
if (root == nullptr) return false;
sum -= root->val;
if (root->left != nullptr && root->right != nullptr) return hasPathSum(root->left, sum) || hasPathSum(root->right, sum);
else if (root->left != nullptr) return hasPathSum(root->left, sum);
else if (root->right != nullptr) return hasPathSum(root->right, sum);
else return sum == 0;
}
};
//-----------------------------------------------------------------
int main() {
Solution so;
cout << so.hasPathSum(nullptr, 0) << endl;
cout << so.hasPathSum(new TreeNode(1), 0) << endl;
cout << so.hasPathSum(new TreeNode(1), 1) << endl;
cout << so.hasPathSum(new TreeNode(1), 2) << endl;
cout << so.hasPathSum(new TreeNode(1, new TreeNode(2), nullptr), 1) << endl;
cout << so.hasPathSum(new TreeNode(1, new TreeNode(2), nullptr), 2) << endl;
cout << so.hasPathSum(new TreeNode(1, new TreeNode(2), nullptr), 3) << endl;
auto tree = new TreeNode(5,
new TreeNode(4,
new TreeNode(11, new TreeNode(7), new TreeNode(2)),
nullptr),
new TreeNode(8,
new TreeNode(13),
new TreeNode(4, nullptr, new TreeNode(1))));
cout << so.hasPathSum(tree, 22) << endl;
cout << so.hasPathSum(tree, 26) << endl;
cout << so.hasPathSum(tree, 18) << endl;
cout << so.hasPathSum(tree, 17) << endl;
}