-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.cpp
More file actions
169 lines (160 loc) · 4.03 KB
/
Copy pathtree.cpp
File metadata and controls
169 lines (160 loc) · 4.03 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
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
159
160
161
162
163
164
165
166
167
168
169
#include <iostream>
#include "queue.h" //user defined queue library
#include "stack.h" //user definde stack library
using namespace std;
class bst
{
class node
{
public:
char data;
node* left;
node* right;
node() //constructor for node class
{
data = ' ';
left = nullptr;
right = nullptr;
}
};
public:
node* root; //pointer to root
bst() //constructor for bst class
{
root = nullptr;
}
node* createNewNode(char d) //function to allocate memory for new node
{
node* newptr = new node;
newptr->data = d;
return newptr;
}
void insert() //insertion without reccursion
{
char x;
cout<<"Enter data: ";
cin>>x;
node *newptr, *ptr;
newptr = createNewNode(x); //creating new node
ptr = root;
if(root == nullptr)
root = newptr;
else
{
while(1)
{
if(x <= ptr->data)
{
if(ptr->left == nullptr)
{
ptr->left = newptr;
break;
}
else
ptr = ptr->left;
}
else
{
if(ptr->right == nullptr)
{
ptr->right = newptr;
break;
}
else
ptr = ptr->right;
}
}
}
}
void minMax() //function to find the min and max elements of the tree
{
node *ptr;
ptr = root;
if(root == nullptr)
cout<<"ERROR: tree is empty"<<endl;
while(ptr->left != nullptr)
{
ptr = ptr->left;
}
cout<<"minimum element in the tree is: "<<ptr->data<<endl;
ptr = root;
while(ptr->right != nullptr)
{
ptr = ptr->right;
}
cout<<"maximum element in the tree is: "<<ptr->data<<endl;
}
void levelOrder()
{
if(root == nullptr)
cout<<"ERROR: tree is empty"<<endl;
queue<node*> q; //a queue of type node pointers
q.inNode(root);
//while there is atleast one discoverable inNode
while(!q.isEmpty())
{
node* ptr = q.getFront();
cout<<ptr->data<<" ";
if(ptr->left != nullptr)
q.inNode(ptr->left);
if(ptr->right != nullptr)
q.inNode(ptr->right);
q.delNode();
}
cout<<endl;
}
void inorder(node* ptr)
{
if(ptr == nullptr)
return;
else
{
inorder(ptr->left);
cout<<ptr->data<<" ";
inorder(ptr->right);
}
}
void preorder(node* ptr)
{
if(ptr == nullptr)
return;
else
{
cout<<ptr->data<<" ";
preorder(ptr->left);
preorder(ptr->right);
}
}
void postorder(node* ptr)
{
if(ptr == nullptr)
return;
else
{
postorder(ptr->left);
postorder(ptr->right);
cout<<ptr->data<<" ";
}
}
};
int main()
{
bst t1; //bst object
for(int i=0; i<11; i++)
{
t1.insert();
}
cout<<"Levelorder: ";
t1.levelOrder();
cout<<"Inorder: ";
t1.inorder(t1.root);
cout<<endl;
cout<<"Preorder: ";
t1.preorder(t1.root);
cout<<endl;
cout<<"Postorder: ";
t1.postorder(t1.root);
cout<<endl;
t1.minMax();
return 0;
}