lurenaa的博客

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
class BSTIterator {
public:
BSTIterator(TreeNode* root) {
stack<TreeNode*> stk;
while(stk.size() || root) {
while(root) {
stk.push(root);
root = root->left;
}
auto top = stk.top();
stk.pop();
vals.push_back(top->val);
root = top->right;
}
}

/** @return the next smallest number */
int next() {
return vals[i++];
}

/** @return whether we have a next smallest number */
bool hasNext() {
return i != vals.size();
}
private:
vector<int> vals;
int i = 0;
};

Accepted

62/62 cases passed (60 ms)

Your runtime beats 60.82 % of cpp submissions

Your memory usage beats 5.01 % of cpp submissions (28.7 MB)