91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中怎么利用LeetCode實現二叉搜索樹迭代器

發布時間:2021-08-03 10:42:29 來源:億速云 閱讀:155 作者:Leah 欄目:開發技術

C++中怎么利用LeetCode實現二叉搜索樹迭代器,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

[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.

Credits:
Special thanks to @ts for adding this problem and creating all test cases.

這道題主要就是考二叉樹的中序遍歷的非遞歸形式,需要額外定義一個棧來輔助,二叉搜索樹的建樹規則就是左<根<右,用中序遍歷即可從小到大取出所有節點。代碼如下:

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class BSTIterator {
public:
    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() {
        TreeNode *n = s.top();
        s.pop();
        int res = n->val;
        if (n->right) {
            n = n->right;
            while (n) {
                s.push(n);
                n = n->left;
            }
        }
        return res;
    }
private:
    stack<TreeNode*> s;
};

/**
 * Your BSTIterator will be called like this:
 * BSTIterator i = BSTIterator(root);
 * while (i.hasNext()) cout << i.next();
 */

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

汾西县| 怀宁县| 三河市| 平塘县| 丘北县| 丹江口市| 岑巩县| 芦溪县| 岳普湖县| 马龙县| 辽阳县| 饶平县| 景谷| 磴口县| 连城县| 巫山县| 清涧县| 东光县| 大港区| 白城市| 北票市| 香河县| 迭部县| 翼城县| 康马县| 马关县| 韩城市| 井研县| 东乡县| 高碑店市| 上高县| 保康县| 韶山市| 县级市| 商水县| 澄江县| 通城县| 衡南县| 丹江口市| 密山市| 乌苏市|