码迷,mamicode.com
首页 > 其他好文 > 详细

Binary Search Tree Iterator leetcode

时间:2016-01-29 00:17:27      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/sdlwlxf/p/5167679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!