-
Notifications
You must be signed in to change notification settings - Fork 0
/
AVL-Tree.h
233 lines (227 loc) · 7.31 KB
/
AVL-Tree.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
//! Tarefa de Estruturas de Dados - Árvore AVL
/*
\author Alan Vinicius Cezar Ensina - Matrícula 16206354
\since 23/05/2018
\version 1.0
\copyright @ Alan Ensina
*/
#ifndef STRUCTURES_AVI_TREE_H
#define STRUCTURES_AVI_TREE_H
#include <cstdint> // std::size_t
#include <stdexcept> // C++ Exceptions
#include "array_list.h"
/*!Implementação da árvore AVL balaceada*/
namespace structures {
/*!Declaração do template da árvore AVL*/
template<typename T>
class AVLTree {
public:
/*!Método construtor*/
AVLTree() {}
/*!Método destrutor*/
virtual ~AVLTree() {
delete root;
size_ = 0;
}
/*! Método que insere dado*/
void insert(const T& data) {
if (empty()) {
root = new Node(data);
} else {
root -> insert(data);
}
size_++;
}
/*! Método que retira o dado especifico*/
void remove(const T& data) {
if (empty())
throw std::out_of_range("Erro: a árvore está vazia.");
if (contains(data)) {
size_--;
root -> remove(data);
}
}
/*! Método booleano que informa se a árvore contém dado específico*/
bool contains(const T& data) const {
bool temp = false;
if (!empty())
temp = root->contains(data);
return temp;
}
/*! Método que verifica se a lista está vazia*/
bool empty() const {
return size_ == 0;
}
/*! Método que retorna o tamanho*/
std::size_t size() const {
return size_;
}
/*! Método que visita a raiz antes das subárvores*/
ArrayList<T> pre_order() const {
ArrayList<T> v{size_};
if (!empty())
root->pre_order(v);
return v;
}
/*! Método que visita as subárvores*/
ArrayList<T> in_order() const {
ArrayList<T> v{size_};
if (!empty())
root->in_order(v);
return v;
}
/*! Método que visita a raiz depois das subarvores*/
ArrayList<T> post_order() const {
ArrayList<T> v{size_};
if (!empty())
root->post_order(v);
return v;
}
private:
struct Node {
/*! Construtor do nó com parâmetros*/
explicit Node(const T& data) : data{data}, left{nullptr}, right{nullptr}
{}
/*! Dado a ser inserido na árvore*/
T data;
/*! Altura da árvore*/
std::size_t height;
/*! Elemento da esquerda*/
Node* left;
/*! Elemento da direita*/
Node* right;
/*! Método que insere elementos*/
void insert(const T& data_) {
Node* novo;
if (data_ < this->data) {
if (this->left == nullptr) {
novo = new Node(data_);
novo->left = nullptr;
novo->right = nullptr;
this->left = novo;
} else {
left->insert(data_);
}
} else {
if (this->right == nullptr) {
novo = new Node(data_);
novo->left = nullptr;
novo->right = nullptr;
this->right = novo;
} else {
right->insert(data_);
}
}
}
/*! Método que remove o elemento desejado*/
bool remove(const T& data_) {
bool temp = false;
if (data_ == this->data) {
Node* novo;
if ((this->left != nullptr) && (this->right != nullptr)) {
novo = this->right;
while (novo->left != nullptr)
novo = novo->left;
this->data = novo->data;
temp = right -> remove(this->data);
} else {
if (this->right != nullptr) {
this->data = right->data;
temp = right -> remove(this->data);
} else {
if (this->left != nullptr) {
this->data = left->data;
temp = left->remove(this->data);
} else {
delete this;
temp = true;
}
}
}
} else {
if ((this->left != nullptr) && (data_ < this->data))
temp = left->remove(data_);
if ((this->right != nullptr) && (data_ > this->data))
temp = right->remove(data_);
}
return temp;
}
/*! Método que verifica se a árvore contém elemento dado por parâmetro*/
bool contains(const T& data_) const {
bool temp = false;
if (data_ == this->data) {
temp = true;
} else {
if ((this->left != nullptr) && (data_ < this->data)) {
temp = left->contains(data_);
} else if ((this->right != nullptr) && (data_ > this->data)) {
temp = right->contains(data_);
}
}
return temp;
}
/*! Método que retorna a altura da árvore*/
void updateHeight() {
if (this->left == nullptr || this->rigth == nullptr)
return -1;
this->heigth++;
}
/*! Método que rotaciona para a esquerda */
Node* simpleLeft(Node* k2) {
Node* k1;
k1 = k2->left;
k2->left = k1->right;
k1->right = k2;
k2->updateHeight();
k1->updateHeight();
return k1;
}
/*! Método que rotaciona para a direita */
Node* simpleRight(Node* k2) {
Node* k1;
k1 = k2->right;
k2->right = k1->left;
k1->left = k2;
k2->updateHeight();
k1->updateHeight();
return k1;
}
/*! Método que rotaciona duas vezes para a esquerda */
Node* doubleLeft(Node* k3) {
k3->left = simpleRight(k3->left);
return simpleLeft(k3);
}
/*! Método que rotaciona duas para a esquerda */
Node* doubleRight(Node* k3) {
k3->right = simpleLeft(k3->right);
return simpleRight(k3);
}
/*! Método que visita a raiz antes das subárvores*/
void pre_order(ArrayList<T>& v) const {
v.push_back(this->data);
if (this->left != nullptr)
left->pre_order(v);
if (this->right != nullptr)
right->pre_order(v);
}
/*! Método que visita as subárvores*/
void in_order(ArrayList<T>& v) const {
if (this->left != nullptr)
left->in_order(v);
v.push_back(this->data);
if (this->right != nullptr)
right->in_order(v);
}
void post_order(ArrayList<T>& v) const {
if (this->left != nullptr)
left->post_order(v);
if (this->right != nullptr)
right->post_order(v);
v.push_back(this->data);
}
};
Node* root{nullptr};
std::size_t size_{0u};
};
} // namespace structures
#endif