- 浏览: 183471 次
- 性别:
- 来自: 济南
文章分类
最新评论
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.
一道设计题,让我们设计一个数据结构,next方法返回二叉搜索树中最小的元素,hasNext方法判断是否还有元素,时间复杂度为O(1), 空间复杂为O(h), h为二叉树的高度。空间复杂度为h是给我们很好的提示,我们可以用堆栈来只存储左子树,这样就能保证空间复杂度为O(h)。每当next操作之后,我们检查当前节点的右子树是否为空,如果不为空就把右子树中的左子树压栈,这样在next操作时动态更新堆栈的内容。hasNext方法在堆栈为空的时候返回false,不为空的时候返回true。代码如下:
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.
一道设计题,让我们设计一个数据结构,next方法返回二叉搜索树中最小的元素,hasNext方法判断是否还有元素,时间复杂度为O(1), 空间复杂为O(h), h为二叉树的高度。空间复杂度为h是给我们很好的提示,我们可以用堆栈来只存储左子树,这样就能保证空间复杂度为O(h)。每当next操作之后,我们检查当前节点的右子树是否为空,如果不为空就把右子树中的左子树压栈,这样在next操作时动态更新堆栈的内容。hasNext方法在堆栈为空的时候返回false,不为空的时候返回true。代码如下:
/** * 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; public BSTIterator(TreeNode root) { stack = new Stack<TreeNode>(); while(root != null) { stack.push(root); root = root.left; } } /** @return whether we have a next smallest number */ public boolean hasNext() { if(stack.isEmpty()) return false; return true; } /** @return the next smallest number */ public int next() { TreeNode cur = stack.pop(); int result = cur.val; cur = cur.right; while(cur != null) { stack.push(cur); cur = cur.left; } return result; } } /** * Your BSTIterator will be called like this: * BSTIterator i = new BSTIterator(root); * while (i.hasNext()) v[f()] = i.next(); */
发表评论
-
498. Diagonal Traverse
2019-11-15 13:52 265Given a matrix of M x N eleme ... -
496 Next Greater Element I
2019-11-14 13:50 267You are given two arrays (witho ... -
Word Break II
2016-03-09 03:15 384Given a string s and a dictiona ... -
Insert Interval
2016-03-08 02:11 374Given a set of non-overlapping ... -
Merge Intervals
2016-03-07 05:25 497Given a collection of intervals ... -
Merge k Sorted Lists
2016-03-07 04:03 563Merge k sorted linked lists and ... -
Multiply Strings
2016-03-06 07:27 475Given two numbers represented a ... -
N-Queens II
2016-03-06 03:06 664Follow up for N-Queens problem. ... -
N-Queens
2016-03-06 02:47 469The n-queens puzzle is the prob ... -
First Missing Positive
2016-03-05 03:09 429Given an unsorted integer array ... -
Spiral Matrix
2016-03-04 03:39 575Given a matrix of m x n element ... -
Trapping Rain Water
2016-03-04 02:54 580Given n non-negative integers r ... -
Repeated DNA Sequences
2016-03-03 03:10 426All DNA is composed of a series ... -
Increasing Triplet Subsequence
2016-03-02 02:48 898Given an unsorted array return ... -
Maximum Product of Word Lengths
2016-03-02 01:56 930Given a string array words, fin ... -
LRU Cache
2016-02-29 10:37 602Design and implement a data str ... -
Super Ugly Number
2016-02-29 07:07 673Write a program to find the nth ... -
Longest Increasing Path in a Matrix
2016-02-29 05:56 842Given an integer matrix, find t ... -
Coin Change
2016-02-29 04:39 783You are given coins of differen ... -
Minimum Height Trees
2016-02-29 04:11 704For a undirected graph with tre ...
相关推荐
* [Binary Search Tree](https://github.com/kamyu104/LeetCode#binary-search-tree) * [Breadth-First Search](https://github.com/kamyu104/LeetCode#breadth-first-search) * [Depth-First Search]...
例如,LeetCode中的“Two Sum”问题就是一个经典的二分查找应用,而“Binary Search Tree Iterator”则涉及到对二叉搜索树的遍历,这些都是Java开发者在实际工作中可能遇到的问题。 在数据结构方面,LeetCode涵盖了...
5. **排序树**:如二叉搜索树(Binary Search Tree, BST),其中每个节点的左子树只包含小于当前节点的值,右子树包含大于当前节点的值。这使得查找、插入和删除操作的时间复杂度为O(log n)。 6. **迭代器...
5.1.2 平衡二元搜寻树(balanced binary search tree) 203 5.1.3 avl tree(adelson-velskii-landis tree) 203 5.1.4 单旋转(single rotation) 205 5.1.5 双旋转(double rotation) 206 5.2 rb-tree(红黑...
5.1.2 平衡二元搜寻树(balanced binary search tree) 203 5.1.3 AVL tree(Adelson-Velskii-Landis tree) 203 5.1.4 单旋转(Single Rotation) 205 5.1.5 双旋转(Double Rotation) 206 5.2 RB-tree(红黑...
本篇文章将深入探讨一个C++语言实现的二叉搜索树(Binary Search Tree, BST)的程序代码。该程序定义了一个通用模板类`BinSearchTree`,用于表示二叉搜索树,并提供了基本的操作功能,如插入、删除以及遍历等。通过...
- 二叉搜索树(Binary Search Tree) - 平衡二叉树(AVL Tree) - 红黑树(Red-Black Tree) - B树(B-Tree) - 字典树(Trie) - **图(Graph)**:由顶点和边组成的非线性数据结构,用于表示对象之间的复杂关系。 - 无...
二叉搜索树(Binary Search Tree, BST)是一种特殊的二叉树,其中每个节点的左子树只包含比它小的元素,右子树只包含比它大的元素。这确保了对树的搜索、插入和删除操作具有高效的性能。 2. 熟悉在二叉搜索树上执行...
在这个场景中,虽然没有直接使用代理类,但可以想象如果需要为`BinaryTree`类添加额外的功能,如权限控制、日志记录等,可以创建一个代理类来包裹`BinaryTree`,代理类在调用实际操作之前执行这些附加任务。...
10. **Binary Tree**:二叉树是一种重要的数据结构,包括二叉搜索树(Binary Search Tree)、平衡二叉树(AVL、Red-Black Tree等),它们在搜索、排序等方面有着广泛应用。 通过研究这些源代码,开发者可以深入理解...
- Binary Tree(二叉树):涉及二叉树的遍历、深度、插入、搜索等基本操作。 - Binary Search(二分搜索):一种有效的查找算法,在有序数组中查找特定元素。 - Search in Rotated Sorted Array(旋转排序数组中的...
Iterator.用一个stack存,对每一个nestedlist进行开苞,用递归或者while循环判断是否第一个element 的isInteger()是否是True. 4.10 812题. Largest Triangle Area.数学问题,已知三点求三角形面积,公式为Helen ...
- **树(Tree)**:如二叉查找树(Binary Search Tree)、平衡树(AVL Tree、Red-Black Tree)等,用于高效搜索和排序操作。 - **图算法**:如Dijkstra最短路径算法、Floyd-Warshall所有路径算法等。 在"Cpp_code-master...
│ │ │ │ │ ├─bin_search_tree_ │ │ │ │ │ ├─branch_policy │ │ │ │ │ ├─cc_hash_table_map_ │ │ │ │ │ ├─eq_fn │ │ │ │ │ ├─gp_hash_table_map_ │ │ │ │ │ ├─...
二叉树是每个节点最多有两个子节点的树,常见的有二叉查找树(Binary Search Tree, BST)。 7. **哈希表(HashMap)**: - 哈希表通过哈希函数快速定位元素,提供了高效的查找、插入和删除操作。Java中的`java....
- **Binary search二分搜寻法/二分查找**:在有序数组中搜索一个元素的有效算法,时间复杂度为O(log n)。 - **Binary tree二元树/二叉树**:一种数据结构,每个节点最多有两个子节点。 以上就是基于给定文件中的...
This means that you do a binary search in the page list in log M time and get the value in O(1) time within a page. RaptorDB starts off by loading the page list and it is good to go from there and...