-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreorder.cpp
More file actions
129 lines (119 loc) · 2.28 KB
/
Copy pathpreorder.cpp
File metadata and controls
129 lines (119 loc) · 2.28 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include<bits/stdc++.h>
using namespace std;
class Node{
public:
int data;
Node* left;
Node* right;
Node(int value){
data = value;
left = nullptr;
right = nullptr;
}
};
//preorder
void print (Node* root){
if(root){
cout<<root->data<<" ";
print(root->left);
print(root->right);
}
}
void priorder(Node* root){
stack<Node*>s;
while(root != NULL || s.empty() == false){
while(root){
cout<<root->data<<" ";
s.push(root);
root = root->left;
}
if(s.empty()){
break;
}
root = s.top();
s.pop();
root = root->right;
}
}
void postorder(Node* root){
if(root){
postorder(root->left);
postorder(root->right);
cout<<root->data<<" ";
}
}
void itprorder(Node* root){
stack<Node*>s,ss;
s.push(root);
Node* temp;
while(!s.empty()){
temp = s.top();
s.pop();
ss.push(temp);
if(temp->left)s.push(temp->left);
if(temp->right)s.push(temp->right);
}
while(!ss.empty()){
cout<<ss.top()->data<<" ";
ss.pop();
}
}
void inorder(Node* root){
if(root){
inorder(root->left);
cout<<root->data<<" ";
inorder(root->right);
}
}
void itinorder(Node* root){
// Node* root = curr;
// if(!root)return;
// stack<Node*>s;
// while(root or !s.empty()){
// while(root!=nullptr){
// s.push(root);
// root =root->left;
// }
// Node* temp = s.top();
// s.pop();
// cout<<temp->data<<" ";
// root = root->right;
// }
stack<Node *> s;
Node *curr = root;
while (curr != NULL || s.empty() == false)
{
/* Reach the left most Node of the
curr Node */
while (curr != NULL)
{
/* place pointer to a tree node on
the stack before traversing
the node's left subtree */
s.push(curr);
curr = curr->left;
}
/* Current must be NULL at this point */
curr = s.top();
s.pop();
cout << curr->data << " ";
/* we have visited the node and its
left subtree. Now, it's right
subtree's turn */
curr = curr->right;
} /* end of while */
}
int main(){
Node* d = new Node(1);
d->left = new Node(2);
d->right = new Node(3);
d->left->right = new Node(4);
d->left->left = new Node(5);
priorder(d);
// cout<<endl;
// itprorder(d);
// inorder(d);
// cout<<endl;
// itinorder(d);
return 0;
}