leetcode 173. Binary Search Tree Iterator(二叉搜索数Iterator)

Implement the BSTIterator class that represents an iterator over the in-order traversal of a binary search tree (BST):

BSTIterator(TreeNode root) Initializes an object of the BSTIterator class. The root of the BST is given as part of the constructor. The pointer should be initialized to a non-existent number smaller than any element in the BST.
boolean hasNext() Returns true if there exists a number in the traversal to the right of the pointer, otherwise returns false.
int next() Moves the pointer to the right, then returns the number at the pointer.

Notice that by initializing the pointer to a non-existent smallest number, the first call to next() will return the smallest element in the BST.

You may assume that next() calls will always be valid. That is, there will be at least a next number in the in-order traversal when next() is called.
在这里插入图片描述
二叉树Iterator的实现,返回下一个最小的元素,
hasNext()返回是否存在下一个元素。

思路:
中序遍历压入list,定义index,返回index指向的数字,每次index++,hasNext返回index与size的比较

class BSTIterator {
    List<Integer> list = new ArrayList<>();
    int idx = 0;

    public BSTIterator(TreeNode root) {
        inOrder(root);
    }
    
    public int next() {
        return list.get(idx ++);
    }
    
    public boolean hasNext() {
        return idx < list.size();
    }
    
    void inOrder(TreeNode root) {
        if(root == null) return;
        inOrder(root.left);
        list.add(root.val);
        inOrder(root.right);
    }
}

上面的方法影响效率的地方在于向list里面不断add数字,它的size会变化,在size变化的时候list要重新规划size,移动数字,会增加计算量。
如果用链表的话会改善一些,每次add计算量都是恒定的。

class BSTIterator {
    LinkedList<Integer> list = new LinkedList<>();
    
    public BSTIterator(TreeNode root) {
        inOrder(root);
    }
    
    public int next() {
        return list.pollFirst();
    }
    
    public boolean hasNext() {
        return list.size() > 0;
    }
    
    void inOrder(TreeNode root) {
        if(root == null) return;
        inOrder(root.left);
        list.addLast(root.val);
        inOrder(root.right);
    }
}
  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

蓝羽飞鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值