Binary Search Tree Iterator leetcode
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Binary Search Tree Iterator leetcode相关的知识,希望对你有一定的参考价值。
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.
Credits:
Special thanks to @ts for adding this problem and creating all test cases.
Subscribe to see which companies asked this question
class BSTIterator { private: TreeNode *current = NULL; stack<TreeNode*> s; public: BSTIterator(TreeNode *root) { // initialize the current pointer current = root; } /** @return whether we have a next smallest number */ bool hasNext() { while(current){ s.push(current); current = current->left; } return !s.empty(); } /** @return the next smallest number */ int next() { TreeNode* node = s.top(); s.pop(); current = node->right; return node->val; } };
以上是关于Binary Search Tree Iterator leetcode的主要内容,如果未能解决你的问题,请参考以下文章
Binary Tree和Binary Search Tree
[LeetCode] 173. Binary Search Tree Iterator_Medium_tag: Binary Search Tree
Convert Sorted Array to Binary Search Tree & Convert Sorted List to Binary Search Tree