-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcTree.cpp
223 lines (204 loc) · 3.97 KB
/
cTree.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
#include "cTree.h"
#include<iostream>
using namespace std;
/* Default Constructor */
cTree::cTree()
{
root = NULL;
count = 0;
}
/* Parametric Constructor*/
cTree::cTree(cNode*& ptr)
{
root = ptr;
root->leftChild = NULL;
root->rightChild = NULL;
count = 1;
}
/* insert function for new nodes */
cTree& cTree::insert(cNode*& ptr)
{
if (!root)
{
root = ptr;
root->leftChild = NULL;
root->rightChild = NULL;
ptr = NULL;
}
else
{
cNode* parent=NULL, * current = root;
while (current != NULL)
{
parent = current;
if (current->getData() <= ptr->getData())
{
current = current->rightChild;
}
else
{
current = current->leftChild;
}
}
if (parent->getData() <= ptr->getData())
{
parent->rightChild = ptr;
parent = parent->rightChild;
parent->rightChild = parent->leftChild =ptr= NULL;
}
else
{
parent->leftChild = ptr;
parent = parent->leftChild;
parent->leftChild = parent->rightChild = ptr = NULL;
}
}
ptr = NULL;
count++;
return *this;
}
/* print in pre order tree */
void cTree::printPreOrder(cNode* ptr)
{
if (!ptr) return;
cout << ptr->getData() << " ";
printPreOrder(ptr->leftChild);
printPreOrder(ptr->rightChild);
}
/*print the nodes in post order */
void cTree::printPostOrder(cNode* ptr)
{
if (!ptr)return;
printPostOrder(ptr->leftChild);
printPostOrder(ptr->rightChild);
cout << ptr->getData() << " ";
}
/* print the nodes of tree in inoder */
void cTree::printInOrder(cNode* ptr)
{
if (!ptr)return;
printInOrder(ptr->leftChild);
cout << ptr->getData() << " ";
printInOrder(ptr->rightChild);
}
/* print tree in reverse order format */
void cTree::printReverseTree(cNode* ptr)
{
if (!ptr)return;
printReverseTree(ptr->rightChild);
cout << ptr->getData() << " ";
printReverseTree(ptr->leftChild);
}
/* getter for root of the tree */
cNode* cTree::getRoot()const
{
return this ->root;
}
int cTree::getMaxDegree()
{
void getDegree(cNode * root, int& deg);
int degree = 1;
getDegree(root, degree);
return degree;
}
void getDegree(cNode* root, int& deg)
{
if (root)
{
if (root->leftChild && root->rightChild)
{
deg = 2;
}
getDegree(root->leftChild, deg);
getDegree(root->rightChild, deg);
}
}
int cTree::getLevel()
{
void getLvl(cNode * root, int& lvl);
int level1 = 0, level2 = 0;
getLvl(root->leftChild, level1);
getLvl(root->rightChild, level2);
if (level1 > level2)return level1-1;
else return level2-1;
}
void getLvl(cNode* root, int& lvl)
{
if (root)
{
getLvl(root->leftChild, lvl);
getLvl(root->rightChild, lvl);
lvl++;
}
}
cNode* cTree::getMinNode() const
{
cNode* ptr = root;
while (ptr->leftChild != NULL)
{
ptr = ptr->leftChild;
}
return ptr;
}
cNode* cTree::getMaxNode() const
{
cNode* ptr = root;
while (ptr->rightChild != NULL)
{
ptr = ptr->rightChild;
}
return ptr;
}
cNode* cTree::deleteNode(cNode* root,int data)
{
if (!root)cout << "Tree is Empty!\n";
if (data < root->getData())
{
root->leftChild = deleteNode(root->leftChild, data);
}
else if (data > root->getData())
{
root->rightChild = deleteNode(root->rightChild, data);
}
else
{
cNode* ptr;
if (root->leftChild == NULL)
{
ptr = root->rightChild;
free(root);
return ptr;
}
else if (root->rightChild == NULL)
{
ptr = root->leftChild;
free(root);
return ptr;
}
ptr = getMinNode();
root->setData(ptr->getData());
root->rightChild = deleteNode(root->rightChild, ptr->getData());
}
return root;
}
cTree::cTree(const cTree& src)
{
root = src.root;
count = src.count;
if (count > 0)
{
cNode* sptr, *dptr;
dptr = root = new cNode(*src.root);
sptr = src.root->rightChild;
while (sptr)
{
dptr->rightChild = new cNode(*sptr);
dptr = dptr->rightChild;
sptr = sptr->rightChild;
}
dptr->rightChild = NULL;
}
}
cTree::~cTree()
{
}