-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path173. Binary Search Tree Iterator.cpp
73 lines (68 loc) · 2.12 KB
/
173. Binary Search Tree Iterator.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
/**
near 30min.
use a stack to mock the dfs.
vector<pair<TreeNode*, int>> stackH; // <ptr, status>
status auto increase as the program run to next line.
0. init(context) // get current stack[cur]
1. dfs(l) // push to stack[cur+1]
2. output(val) // do something in stack[cur]
3. dfs(r) // push to stack[cur+1]
4. quit(resp) // pop the stack top, put the resp to stack[cur-1]
let status = next line you will run.
*/
/**
* 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 BSTIterator {
private:
vector<pair<TreeNode*, int>> stackH; // <ptr, status>
bool hasRunNext = false;
int nextVal = 0;
public:
BSTIterator(TreeNode* root) { stackH.push_back(make_pair(root, 0)); }
int next() {
if (!hasRunNext) {
hasNext();
}
hasRunNext = false;
return nextVal;
}
bool hasNext() {
while (stackH.size() > 0) {
TreeNode* cur = stackH.back().first;
++stackH.back().second;
if (stackH.back().second == 1) {
if (cur->left != nullptr) {
stackH.push_back(make_pair(cur->left, 0));
}
} else if (stackH.back().second == 2) {
// cout << stackH.back().first->val<<endl;
hasRunNext = true;
nextVal = stackH.back().first->val;
return true;
} else if (stackH.back().second == 3) {
if (cur->right != nullptr) {
stackH.push_back(make_pair(cur->right, 0));
}
} else {
stackH.pop_back();
}
}
return false;
}
};
/**
* Your BSTIterator object will be instantiated and called as such:
* BSTIterator* obj = new BSTIterator(root);
* int param_1 = obj->next();
* bool param_2 = obj->hasNext();
*/