-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path01 Traversal of tree.cpp
158 lines (133 loc) · 2.74 KB
/
01 Traversal of tree.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include <iostream>
using namespace std;
class Node {
public:
Node* lchild;
int data;
Node* rchild;
};
class Queue {
private:
int size;
int front;
int rear;
Node** Q; // [Node*]*: Pointer to [Pointer to Node]
public:
Queue(int size);
~Queue();
bool isFull();
bool isEmpty();
void enqueue(Node* x);
Node* dequeue();
};
Queue::Queue(int size) {
this->size = size;
front = -1;
rear = -1;
Q = new Node * [size];
}
Queue::~Queue() {
delete[] Q;
}
bool Queue::isEmpty() {
if (front == rear) {
return true;
}
return false;
}
bool Queue::isFull() {
if (rear == size - 1) {
return true;
}
return false;
}
void Queue::enqueue(Node* x) {
if (isFull()) {
cout << "Queue Overflow" << endl;
}
else {
rear++;
Q[rear] = x;
}
}
Node* Queue::dequeue() {
Node* x = nullptr;
if (isEmpty()) {
cout << "Queue Underflow" << endl;
}
else {
front++;
x = Q[front];
}
return x;
}
Node* root = new Node;
void createTree() {
Node* p;
Node* t;
int x;
Queue q(10);
cout << "Enter root value: " << flush;
cin >> x;
root->data = x;
root->lchild = nullptr;
root->rchild = nullptr;
q.enqueue(root);
while (!q.isEmpty()) {
p = q.dequeue();
cout << "Enter left child value of " << p->data << ": " << flush;
cin >> x;
if (x != -1) {
t = new Node;
t->data = x;
t->lchild = nullptr;
t->rchild = nullptr;
p->lchild = t;
q.enqueue(t);
}
cout << "Enter right child value of " << p->data << ": " << flush;
cin >> x;
if (x != -1) {
t = new Node;
t->data = x;
t->lchild = nullptr;
t->rchild = nullptr;
p->rchild = t;
q.enqueue(t);
}
}
}
void preorder(Node* p) {
if (p) {
cout << p->data << ", " << flush;
preorder(p->lchild);
preorder(p->rchild);
}
}
void inorder(Node* p) {
if (p) {
inorder(p->lchild);
cout << p->data << ", " << flush;
inorder(p->rchild);
}
}
void postorder(Node* p) {
if (p) {
postorder(p->lchild);
postorder(p->rchild);
cout << p->data << ", " << flush;
}
}
int main() {
createTree();
preorder(root);
cout << "preorder";
cout << endl;
inorder(root);
cout << "inorder";
cout << endl;
postorder(root);
cout << "postorder";
cout << endl;
return 0;
}