173.Binary search tree iterator

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了173.Binary search tree iterator相关的知识,希望对你有一定的参考价值。

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.

Credits:
Special thanks to @ts for adding this problem and creating all test cases.

对中序遍历的操作:

/**
 * Definition for binary tree
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */

public class BSTIterator {
    private TreeNode cur;
    private Stack<TreeNode> stack = new Stack<TreeNode>();
    
    public BSTIterator(TreeNode root) {
        cur = root;
    }

    /** @return whether we have a next smallest number */
    public boolean hasNext() {
        return (cur != null || !stack.isEmpty());

    }

    /** @return the next smallest number */
    public int next() {
        while (cur != null) {
            stack.push(cur);
            cur = cur.left;
        }
        cur = stack.pop();
        TreeNode node =  cur;
        cur = cur.right;
        return node.val;
    }
}

注意: return (cur != null || !stack.isEmpty());
root 先不push进去,为了next()方便

  

以上是关于173.Binary search tree iterator的主要内容,如果未能解决你的问题,请参考以下文章

173.Binary search tree iterator

173. Binary Search Tree Iterator

leetcode@ [173] Binary Search Tree Iterator (InOrder traversal)

[LC] 173. Binary Search Tree Iterator

173. Binary Search Tree Iterator

173. Binary Search Tree Iterator