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, whereh is the height of the tree.
题意:给定一棵BST树。创建一个next()函数可以返回下一个最小的节点值,创建一个hasNext()函数判断是否还有下一个节点。
要求next()的时间复杂度为O(n),空间复杂度为O(h)
解法1:中序遍历二叉树,保留遍历结果。
原文链接http://blog.csdn.net/crazy__chen/article/details/46573661