-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterative_inorde.cpp
66 lines (49 loc) · 1.09 KB
/
iterative_inorde.cpp
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
#include<bits/stdc++.h>
using namespace std;
typedef struct Node{
int data;
Node* left;
Node* right;
}Node;
Node* newNode(int data){
Node* n = new Node;
n->data = data;
n->left=n->right=NULL;
return n;
}
void inorder(Node* root){
if(root){
//LDR
inorder(root->left);
cout<<root->data<<" ";
inorder(root->right);
}
}
// complete code for iterative inorder
void iterative_inorder(Node* root){
stack<Node*> st;
while(1){
while(root){
st.push(root);
root=root->left;
}
if(st.empty())
break;
root=st.top(); st.pop();
cout<<root->data<<" ";
root=root->right;
}
}
int main(){
Node* root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->right->right = newNode(7);
root->right->left = newNode(6);
root->left->left = newNode(4);
root->left->right = newNode(5);
cout<<"\n\nRecursive Inorder "<<endl;
inorder(root);
cout<<"\n\nIterative Inorder"<<endl;
iterative_inorder(root);
}