-
Notifications
You must be signed in to change notification settings - Fork 0
/
173-二叉搜索树迭代器.java
52 lines (45 loc) · 1.03 KB
/
173-二叉搜索树迭代器.java
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
import java.util.ArrayDeque;
import java.util.Deque;
// Definition for a binary tree node.
class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
class BSTIterator {
private final Deque<TreeNode> stack = new ArrayDeque<>();
public BSTIterator(TreeNode root) {
var cur = root;
while (cur != null) {
stack.push(cur);
cur = cur.left;
}
}
/**
* @return the next smallest number
*/
public int next() {
var res = stack.pop();
var cur = res.right;
while (cur != null) {
stack.push(cur);
cur = cur.left;
}
return res.val;
}
/**
* @return whether we have a next smallest number
*/
public boolean hasNext() {
return !stack.isEmpty();
}
}
/**
* Your BSTIterator object will be instantiated and called as such:
* BSTIterator obj = new BSTIterator(root);
* int param_1 = obj.next();
* boolean param_2 = obj.hasNext();
*/