• leetcode[173]Binary Search Tree Iterator


    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.

    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class BSTIterator {
    private:
        stack<TreeNode *> sta;
    public:
    void leftOrder(TreeNode *root)
    {
        if(root==NULL)return;
        TreeNode *tmp=root;
        while(tmp)
        {
            sta.push(tmp);
            if(tmp->left)
            {
                tmp=tmp->left;
            }
            else break;
        }
        return;
    }
        BSTIterator(TreeNode *root) {
          leftOrder(root); 
        }
    
        /** @return whether we have a next smallest number */
        bool hasNext() {
           return !sta.empty(); 
        }
    
        /** @return the next smallest number */
        int next() {
            TreeNode *top=sta.top();
            sta.pop();
            if(top->right)leftOrder(top->right);
            return top->val;
        }
    };
    
    /**
     * Your BSTIterator will be called like this:
     * BSTIterator i = BSTIterator(root);
     * while (i.hasNext()) cout << i.next();
     */
  • 相关阅读:
    Shell脚本创建Nginx的upstream及location配置文件
    系统初始化
    算法训练 P0505
    算法训练 素因子去重
    基础训练 时间转换
    基础训练 字符串对比
    基础训练 分解质因数
    基础训练 矩形面积交
    快速幂矩阵
    基础训练 矩阵乘法
  • 原文地址:https://www.cnblogs.com/Vae1990Silence/p/4280657.html
Copyright © 2020-2023  润新知