-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBinaryTree.h
217 lines (198 loc) · 4.23 KB
/
BinaryTree.h
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
#pragma once
#ifndef BINARYTREE_H_
#define BINARYTREE_H_
#include<cstdlib>
#include<exception>
#include<typeinfo>
#define MAX(a,b) (a>b?a:b)
template<class T, class NodeType>
class BinaryTree
{
public:
BinaryTree();
virtual ~BinaryTree();
void Destroy()
{
if(_root != NULL)
{
DestroySubtree(_root);
}
}
template<class ComparableType>
NodeType* Search(ComparableType key)
{
NodeType *result = NULL;
if(_root != NULL)
{
result = Search<ComparableType>(_root, key);
}
return result;
}
void Initialize(T key)
{
_root = NewNode(key);
}
virtual void Insert(T key)
{
NodeType* parent = Search<T>(key);
if(parent != NULL)
{
AddChildTo(parent,key);
}
}
virtual void Delete(T key)
{
NodeType **parent = NULL;
try
{
parent = SearchForParent(_root,key);
}
catch(std::logic_error const& keyIsRootException)
{
delete _root;
_root = NULL;
}
}
int GetHeight(NodeType* root, int &height)
{
if(root != NULL)
{
int left_subtree_height = 0, right_subtree_height = 0;
int left_height = GetHeight(root->GetLeft(), left_subtree_height)+1;
int right_height = GetHeight(root->GetRight(), right_subtree_height)+1;
height = MAX(left_height,right_height)+1;
}
return height;
}
NodeType** SearchForParent(NodeType *root,T key)
{
if(root==_root&&_root->GetNodeContents()==key)
return NULL;
T data = root->GetNodeContents();
NodeType *next = (data < key)? root->GetRight():root->GetLeft();
NodeType **result = NULL, **child = NULL;
if(next != NULL)
{
if(next->GetNodeContents() == key)
{
result = &root;
}
else
{
result = SearchForParent(next,key);
}
}
else if(next == NULL)
{
throw std::bad_typeid("NodeType not found");
}
return result;
}
virtual void AddChildTo(NodeType *parent,T key)
{
if(parent->GetNodeContents()>key && parent->GetLeft() == NULL)
{
parent->SetLeftChild(NewNode(key));
}
else if(parent->GetNodeContents()<key && parent->GetRight() == NULL)
{
parent->SetRightChild(NewNode(key));
}
else if(parent->GetNodeContents()==key)
throw std::invalid_argument("already in tree");
else
throw std::invalid_argument("search failed");
}
protected:
virtual NodeType *NewNode(const T &data){return new NodeType(data);}
void RotateLeft(NodeType *root)
{
NodeType *newRoot = root->GetRight();
if(newRoot != NULL)
{
NodeType *former_left = newRoot->GetLeft();
newRoot->SetLeftChild(root);
root->SetRightChild(former_left);
UpdateHeights(_root,root->GetNodeContents());
}
}
void RotateRight(NodeType *root)
{
NodeType *newRoot = root->GetLeft();
if(newRoot != NULL)
{
NodeType *former_right = newRoot->GetRight();
newRoot->SetRightChild(root);
root->SetLeftChild(former_right);
UpdateHeights(_root,root->GetNodeContents());
}
}
void UpdateHeights(NodeType *root,T key)
{
if(root!=NULL)
{
int height = 0;
root->SetHeight(GetHeight(root,height));
if(root->GetNodeContents()<key)
UpdateHeights(root->GetRight(),key);
else if(root->GetNodeContents()>key)
UpdateHeights(root->GetLeft(),key);
}
}
void SwapChildrenToPrepForRotation(NodeType *parent, NodeType *child, NodeType *grand_child)
{
if(parent->GetNodeContents() < child->GetNodeContents())
{
parent->SetRightChild(grand_child);
}
else if(parent->GetNodeContents() > child->GetNodeContents())
{
parent->SetLeftChild(grand_child);
}
}
NodeType *_root;
private:
template<class ComparableType>
NodeType* Search(NodeType *root,ComparableType key)
{
T data = root->GetNodeContents();
NodeType *result = NULL;
if((ComparableType)data == key)
{
result = root;
}
else
{
NodeType *next = ((ComparableType)data < key)? root->GetRight():root->GetLeft();
if(next != NULL)
result = Search<ComparableType>(next,key);
else
result = root;
}
return result;
}
void DestroySubtree(NodeType *root)
{
if(root->GetLeft()!= NULL)
{
DestroySubtree(root->GetLeft());
}
if(root->GetRight()!=NULL)
{
DestroySubtree(root->GetRight());
}
delete root;
root = NULL;
}
};
template<class T, class NodeType>
BinaryTree<T, NodeType>::BinaryTree()
{
_root = NULL;
}
template<class T, class NodeType>
BinaryTree<T, NodeType>::~BinaryTree()
{
Destroy();
}
#endif