LeetCode – Refresh – Binary Tree Iterator

本文介绍了一种使用栈来实现二叉搜索树(BST)中序遍历的方法,通过不断将右子节点压入栈中,并在弹出栈顶元素后再次将其右子树的所有左子节点压入栈中,以此确保每次都能获取到下一个最小值。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

It is similar to use stack for BST inorder traversal.

So do the same thing : 

1. Get stack to store right branchs (include current node).

2. When you pop the top node, remember to push all the right sub branches again. Otherwise, it will cause right's left branches missed from result

 

 1 /**
 2  * Definition for binary tree
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class BSTIterator {
11 private:
12     stack<TreeNode *> s;
13 public:
14     void initialNodes(TreeNode *root) {
15         while (root) {
16             s.push(root);
17             root = root->left;
18         }
19     }
20     BSTIterator(TreeNode *root) {
21         initialNodes(root);
22     }
23 
24     /** @return whether we have a next smallest number */
25     bool hasNext() {
26         return !s.empty();
27     }
28 
29     /** @return the next smallest number */
30     int next() {
31         TreeNode *tmp = s.top();
32         s.pop();
33         if (tmp->right) {
34             initialNodes(tmp->right);
35         }
36         return tmp->val;
37     }
38 };
39 
40 /**
41  * Your BSTIterator will be called like this:
42  * BSTIterator i = BSTIterator(root);
43  * while (i.hasNext()) cout << i.next();
44  */

 

转载于:https://www.cnblogs.com/shuashuashua/p/4346167.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值