zoukankan      html  css  js  c++  java
  • 173. Binary Search Tree Iterator

    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class BSTIterator {
    public:
        stack<TreeNode *> s;
        TreeNode *p;
        BSTIterator(TreeNode *root) {
            p = root;
        }
    
        /** @return whether we have a next smallest number */
        bool hasNext() {
            return p != NULL || !s.empty();
        }
    
        /** @return the next smallest number */
        int next() {
            if (hasNext()) {
                while (p) {
                    s.push(p);
                    p = p->left;
                }
                p = s.top();
                s.pop();
                int val = p->val;
                p = p->right;
                return val;
            }
            return -1;
        }
    };
    
    /**
     * Your BSTIterator will be called like this:
     * BSTIterator i = BSTIterator(root);
     * while (i.hasNext()) cout << i.next();
     */
    /**
     * Definition for binary tree
     * struct TreeNode {
     *     int val;
     *     TreeNode *left;
     *     TreeNode *right;
     *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
     * };
     */
    class BSTIterator {
    public:
        stack<TreeNode *> s;
        BSTIterator(TreeNode *root) {
            while (root) {
                s.push(root);
                root = root->left;
            }
        }
    
        /** @return whether we have a next smallest number */
        bool hasNext() {
            return !s.empty();
        }
    
        /** @return the next smallest number */
        int next() {
            if (hasNext()) {
                TreeNode* p = s.top();
                s.pop();
                int val = p->val;
                p = p->right;
                while (p) {
                    s.push(p);
                    p = p->left;
                }
                return val;
            }
            return -1;
        }
    };
    
    /**
     * Your BSTIterator will be called like this:
     * BSTIterator i = BSTIterator(root);
     * while (i.hasNext()) cout << i.next();
     */
  • 相关阅读:
    线性时间将两个有序链表合成一个有序链表(constant additional space)
    C++定义指针数组
    cmd运行java编译文件
    java的方法
    Java流程控制
    用户交互-Scanner
    Java的注释
    编译型语言和解释性语言
    JDK、JRE和JVM
    MarkDown的简单使用
  • 原文地址:https://www.cnblogs.com/JTechRoad/p/9065638.html
Copyright © 2011-2022 走看看