-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path653.two-sum-iv-input-is-a-bst.cpp
84 lines (74 loc) · 1.92 KB
/
653.two-sum-iv-input-is-a-bst.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Tag: Hash Table, Two Pointers, Tree, Depth-First Search, Breadth-First Search, Binary Search Tree, Binary Tree
// Time: O(NH)
// Space: O(H)
// Ref: -
// Note: -
// Given the root of a binary search tree and an integer k, return true if there exist two elements in the BST such that their sum is equal to k, or false otherwise.
//
// Example 1:
//
//
// Input: root = [5,3,6,2,4,null,7], k = 9
// Output: true
//
// Example 2:
//
//
// Input: root = [5,3,6,2,4,null,7], k = 28
// Output: false
//
//
// Constraints:
//
// The number of nodes in the tree is in the range [1, 104].
// -104 <= Node.val <= 104
// root is guaranteed to be a valid binary search tree.
// -105 <= k <= 105
//
//
/**
* 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:
bool findTarget(TreeNode* root, int k) {
stack<TreeNode *> st;
st.push(root);
while (!st.empty()) {
TreeNode *cur = st.top();
st.pop();
TreeNode *target = find(root, k - cur->val);
if (target && target != cur) {
return true;
}
if (cur->right) {
st.push(cur->right);
}
if (cur->left) {
st.push(cur->left);
}
}
return false;
}
TreeNode* find(TreeNode* root, int k) {
if (!root){
return nullptr;
}
if (root->val == k) {
return root;
}
if (root->val < k) {
return find(root->right, k);
} else {
return find(root->left, k);
}
}
};