-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBinarySearchTreeIterator.cpp
More file actions
85 lines (78 loc) · 1.41 KB
/
Copy pathBinarySearchTreeIterator.cpp
File metadata and controls
85 lines (78 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include<iostream>
#include<new>
#include<stack>
using namespace std;
/**
* 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*> st;
BSTIterator(TreeNode *root)
{
while(root)
{
st.push(root);
root=root->left;
}
}
/** @return whether we have a next smallest number */
bool hasNext()
{
return !st.empty();
}
/** @return the next smallest number */
int next()
{
TreeNode *tmp=NULL;
if(!st.empty())
{
tmp=st.top();
st.pop();
TreeNode *cur=tmp->right;
while(cur)
{
st.push(cur);
cur=cur->left;
}
}
return tmp->val;
}
};
void insert(TreeNode *&root,int val)
{
if(root==NULL)
{
root=new TreeNode(val);
}
else if(val<root->val)
insert(root->left,val);
else
insert(root->right,val);
}
void createBST(TreeNode *&root)
{
int i;
int arr[10]= {2,4,6,1,3,5,9,8,7,10};
for(i=0; i<10; i++)
{
insert(root,arr[i]);
}
}
int main()
{
TreeNode *root=NULL;
createBST(root);
BSTIterator s(root);
for(int i=0;i<10;i++)
cout<<s.next()<<" ";
cout<<endl;
}