题目链接

https://leetcode.com/problems/binary-search-tree-iterator/description/

题目描述

实现一个二叉搜索树迭代器。你将使用二叉搜索树的根节点初始化迭代器。

调用 next() 将返回二叉搜索树中的下一个最小的数。

注意: next() 和hasNext() 操作的时间复杂度是O(1),并使用 O(h) 内存,其中 h 是树的高度。

题解

代码

/**
* Definition for binary tree
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/ public class BSTIterator { private Stack<TreeNode> stack = new Stack<>();
public BSTIterator(TreeNode root) {
pushAll(root);
} /** @return whether we have a next smallest number */
public boolean hasNext() {
return !stack.isEmpty();
} /** @return the next smallest number */
public int next() {
TreeNode tmpNode = stack.pop();
pushAll(tmpNode.right);
return tmpNode.val;
} private void pushAll(TreeNode node) {
for (; node != null; stack.push(node), node = node.left);
}
} /**
* Your BSTIterator will be called like this:
* BSTIterator i = new BSTIterator(root);
* while (i.hasNext()) v[f()] = i.next();
*/

最新文章

  1. 自定义webkit浏览器滚动条样式
  2. Python常见问题及资料收集
  3. 2013/10/24初学BOOST
  4. get到的新技能
  5. SQL Server添加MDW性能监控报表(转载)
  6. JAVA -Xms -Xmx -XX:PermSize -XX:MaxPermSize 区别
  7. 绑定事件 addEventListener
  8. ASP.net 探针
  9. 转载 GUID介绍
  10. Chapter 7 Backup and Recovery 备份和恢复:
  11. html5结合flash实现视频文件在所有主流浏览器兼容播放
  12. 从durable谈起,我是如何用搜索引擎抓住技术的关键字学习新姿势打开敏捷开发的大门
  13. 如何在Promise链中共享变量?
  14. 5、 LwIP协议栈规范翻译——操作系统仿真层
  15. hdu-3671-tarjin/割点方案
  16. mysql FullText全文索引的问题
  17. linux下如何实现mysql数据库每天自动备份定时备份
  18. css3动画性能优化--针对移动端卡顿问题
  19. Oracle Procedure记录
  20. hdu 1817 Necklace of Beads(Polya定理)

热门文章

  1. 微信小程序电商实战-首页(上)
  2. python反爬之网页局部刷新1
  3. CSS 属性之中经常出现的百分比(转)
  4. mysql的三种索引
  5. 初学:react-native 轮播图
  6. IplImage转为Mat的方法
  7. Simotion应用案例,使用Simotion web server调试,使用Project Generator创建项目,Simosim模拟运行运行项目
  8. 816 Ambiguous Coordinates (many cases problem)
  9. Java UUID Generator(JUG)
  10. JS二维数组的写法以及注意事项