码迷,mamicode.com
首页 > 其他好文 > 详细

173.Binary search tree iterator

时间:2017-07-26 17:35:36      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:calling   ber   use   not   this   number   highlight   average   with   

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

标签:calling   ber   use   not   this   number   highlight   average   with   

原文地址:http://www.cnblogs.com/apanda009/p/7240006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!