Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.
Calling next() will return the next smallest number in the BST.
Note: next() and hasNext() should run in average O(1) time and uses O(h) memory, where h is the height of the tree.
思路:BST的中序遍歷就是一個升序,滿足題目的迭代要求。考慮到要O(h)的空間復雜度错沃,用椄胄模可以保存當前最小node的父節(jié)點礼饱,每次最小值在棧頂夯膀,O(1)的時間復雜度。
public class BSTIterator {
Stack<TreeNode> stack = new Stack<>();
public BSTIterator(TreeNode root) {
while (root != null) {
stack.push(root);
root = root.left;
}
}
/** @return whether we have a next smallest number */
public boolean hasNext() {
return !stack.isEmpty();
}
/** @return the next smallest number */
public int next() {
TreeNode node = stack.pop();
TreeNode dummy = node.right;
while (dummy != null) {
stack.push(dummy);
dummy = dummy.left;
}
return node.val;
}
}