forked from liuyubobobo/Play-Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main2.cpp
96 lines (77 loc) · 2.25 KB
/
main2.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
85
86
87
88
89
90
91
92
93
94
95
96
/// Source : https://leetcode.com/problems/binary-search-tree-iterator/description/
/// Author : liuyubobobo
/// Time : 2018-06-06
#include <iostream>
#include <stack>
#include <vector>
#include <cassert>
using namespace std;
/// Definition for binary tree
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
/// Using My Non-recursive Inorder Traversal Algorithm
///
/// Time Complexity: initial: O(1)
/// hasNext: O(h)
/// next: O(h)
/// Space Complexity: O(h)
class BSTIterator {
private:
struct Command{
string s; // go, visit
TreeNode* node;
Command(string s, TreeNode* node): s(s), node(node){}
};
stack<Command> myStack;
public:
BSTIterator(TreeNode *root) {
if(root != NULL)
myStack.push(Command("go", root));
}
/** @return whether we have a next smallest number */
bool hasNext() {
while(!myStack.empty()){
Command command = myStack.top();
myStack.pop();
if(command.s == "visit"){
myStack.push(command);
return true;
}
else{
assert(command.s == "go");
if(command.node->right)
myStack.push(Command("go",command.node->right));
myStack.push(Command("visit", command.node));
if(command.node->left)
myStack.push(Command("go",command.node->left));
}
}
return false;
}
/** @return the next smallest number */
int next() {
while(!myStack.empty()){
Command command = myStack.top();
myStack.pop();
if(command.s == "visit")
return command.node->val;
else{
assert(command.s == "go");
if(command.node->right)
myStack.push(Command("go",command.node->right));
myStack.push(Command("visit", command.node));
if(command.node->left)
myStack.push(Command("go",command.node->left));
}
}
assert(false);
return -1;
}
};
int main() {
return 0;
}