博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LintCode] Binary Search Tree Iterator
阅读量:4964 次
发布时间:2019-06-12

本文共 1888 字,大约阅读时间需要 6 分钟。

Binary Search Tree Iterator

Design an iterator over a binary search tree with the following rules:

  • Elements are visited in ascending order (i.e. an in-order traversal)
  • next() and hasNext() queries run in O(1) time inaverage.  
Example

For the following binary search tree, in-order traversal by using iterator is[1, 6, 10, 11, 12]

10 /    \1      11 \       \  6       12
Challenge

Extra memory usage O(h), h is the height of the tree.

Super Star: Extra memory usage O(1)

 

SOLUTION:

这题啊,说实话,背诵题,首先背下来,再说理解。

开始说这个题,题本身来说,不难,就是一个inorder遍历,不过要用iterator来写(这里插一句,什么是iterator呢? 迭代器基本有俩功能,next(),hasNext(),输出下一个元素,不过考虑到原始数据如果从list换成arraylist这种类似情况,而导致从新写一个for循环带来的麻烦,研究出一个迭代器,所有循环在迭代器内部完成),用iterator就是分开写这个这个程序,输出中序遍历的下一个元素。

思路就是中序遍历,具体看代码:

/** * Definition of TreeNode: * public class TreeNode { *     public int val; *     public TreeNode left, right; *     public TreeNode(int val) { *         this.val = val; *         this.left = this.right = null; *     } * } * Example of iterate a tree: * BSTIterator iterator = new BSTIterator(root); * while (iterator.hasNext()) { *    TreeNode node = iterator.next(); *    do something for node * }  */public class BSTIterator {    //@param root: The root of binary tree.    private Stack
stack = new Stack
(); private TreeNode current; public BSTIterator(TreeNode root) { current = root; } //@return: True if there has next node, or false public boolean hasNext() { return (current != null || !stack.isEmpty()); } //@return: return next node public TreeNode next() { while (current != null){ stack.push(current); current = current.left; } current = stack.pop(); TreeNode node = current; current = current.right; return node; }}
View Code

 

 

转载于:https://www.cnblogs.com/tritritri/p/4935577.html

你可能感兴趣的文章
PyQt5-信号与槽
查看>>
android 获取控件大小和设置调整控件的位置XY
查看>>
tomcat7.0在centos7下中文乱码问题解决汇总
查看>>
linux 驱动学习 GPIO驱动相关函数详解
查看>>
设置dos窗口的背景色与前景色
查看>>
Go视频教程整理
查看>>
什么是BFC
查看>>
VSS迁移备忘
查看>>
大数据测试笔记
查看>>
转载:Pixhawk源码笔记十一:增加新的MAVLink消息
查看>>
swift学习第七天:字典
查看>>
requirejs打包项目
查看>>
[置顶] 轻量级语言Lua入门
查看>>
ssh框架性能优化
查看>>
c++构造函数与析构函数
查看>>
Python实现斐波那契数列
查看>>
yarn命令的使用
查看>>
使用公式C=(5/9)(F-32)打印下列华氏温度与摄氏温度对照表。
查看>>
hdu 2586 How far away ? 倍增求LCA
查看>>
深入理解内存模型JMM
查看>>