-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpath_sum.cpp
61 lines (49 loc) · 1.64 KB
/
path_sum.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* Definition for a binary tree node.
* 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:
//recursive TC: O(n) / SC: O(1)
bool hasPathSum(TreeNode* root, int targetSum) {
//basecases
if(!root) return false;
if(!root->left and !root->right and targetSum == root->val) return true;
//hypothesis
targetSum -= root->val;
//induction
return hasPathSum(root->left, targetSum) or hasPathSum(root->right, targetSum);
}
//iterative TC: O(n) / SC: O(n)
bool hasPathSum(TreeNode* root, int targetSum) {
if(!root) return false;
int sum = 0;
queue<TreeNode *> qu;
TreeNode *current = root;
qu.push(current);
while(!qu.empty()) {
current = qu.front();
qu.pop();
if(!current->left and !current->right) {
if(current->val == targetSum)
return true;
}
if(current->left) {
current->left->val += current->val;
qu.push(current->left);
}
if(current->right) {
current->right->val += current->val;
qu.push(current->right);
}
}
return false;
}
};