-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimplebst.cpp
316 lines (251 loc) · 7.58 KB
/
simplebst.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
#ifndef __SIMPLEBST_H__
#define __SIMPLEBST_H__
#include<iostream>
#include<vector>
#include<functional>
#include<fstream>
#include<string.h>
using namespace std;
class SimpleBST {
struct Node{
float elem;
Node* iz;//left
Node* der;//right
Node(float elem) : elem(elem), iz(nullptr), der(nullptr){}
};
Node* raiz;//root
public:
SimpleBST(): raiz(nullptr){}
~SimpleBST(){
clear(raiz);
}
void agregar(float elem){
agregar(raiz,elem);
}
bool buscar(float elem){
return buscar(raiz,elem);
}
void preorder(function<void(float)> proc){//ese lambda va a recibir un float
preorder(raiz,proc);
}
void postorder(function<void(float)> proc){
postorder(raiz,proc);
}
void inorder(function<void(float)> proc){
inorder(raiz,proc);
}
//ESTO ES SOLO PARA DIBUJAR EL ARBOL
void view(string filename){//metodo para dibujar un arbol
if (raiz!=nullptr){
ofstream file(filename);
int cont=0;
file<<"Digraph G {\n";
generate(raiz,file,cont);
file<<"}";
}
}
void eliminar(float elem){
remove(elem);
}
void mayor(){
max();
}
void menor(){
min();
}
void invertir(float elem){
invertir(raiz,elem);
}
void suma(){
int s = sum(raiz);
cout<<"\nLa suma total es: "<<s<<endl;
}
private:
void clear(Node* node){
if (raiz!=nullptr){
clear(node->iz);
clear(node->der);
delete node;
node = nullptr; //solo por si acaso, en realidad no debería ir esta linea de código
}
}
void agregar(Node*& node, float elem){
if (node==nullptr){
node = new Node(elem);
}
else if (elem<node->elem){
agregar(node->iz, elem);
}
else if (elem>node->elem){//todos los repetidos irían a la derecha, si elimino todo esta linea, excepto el 'else'.
agregar(node->der, elem);
}
}
bool buscar(Node* node, float elem){
if (node!=nullptr){
if (elem==node->elem){
return true;
}
else if (elem<node->elem){
return buscar(node->iz,elem);
}
else{
return buscar(node->der,elem);
}
}
return false;
}
void preorder(Node *node,function<void(float)>proc){
if (node!=nullptr){
proc(node->elem);
preorder(node->iz,proc);
preorder(node->der,proc);
}
}
void postorder(Node* node, function<void(float)>proc){
if (node!=nullptr){
postorder(node->iz,proc);
postorder(node->der,proc);
proc(node->elem);
}
}
void inorder(Node* node, function<void(float)>proc){
if (node!=nullptr) {
inorder(node->iz,proc);
proc(node->elem);
inorder(node->der,proc);
}
}
void generate(Node *node, ofstream& file,int &cont){
if (node->iz!=nullptr){
file <<node->elem <<"->"<<node->iz->elem<<endl;
generate(node->iz, file,cont);
}else{
file <<"null"<<cont<<" [shape=point]\n";
file<<node->elem<<"->null"<<cont<<endl;
++cont;
}
if (node->der!=nullptr){
file <<node->elem <<"->"<<node->der->elem<<endl;
generate(node->der, file,cont);
}else{
file <<"null"<<cont<<" [shape=point]\n";
file<<node->elem<<"->null"<<cont<<endl;
++cont;
}
}
void remove(float v){
//Encontrar elemento a eliminar
Node* aux=raiz;
Node* auxpadre=nullptr; //el padre del elemento q queremos eliminar
bool hijoiz; // ¿aux es hijo izquierdo del padre?.
while (aux!=nullptr){
if (v==aux->elem){
break;
}
else if (v<aux->elem){
auxpadre=aux;
hijoiz=true;
aux = aux->iz;
}else {
auxpadre=aux;
hijoiz=false;
aux=aux->der;
}
}
if (aux==nullptr) return; //no se encontró el elemento a eliminar.
//Ahora eliminamos en caso no tenga hijo izquierdo
if (aux->iz==nullptr){//no tiene hijo izquierdo, sube el derecho.
if (auxpadre==nullptr){ //el elemento a eliminar es la raiz
raiz=aux->der;
}else if (hijoiz){
auxpadre->iz=aux->der; //el elemento a eliminar es el izquierdo de auxpadre
}else { //es el derecho de parent
auxpadre->der=aux->der;
}
delete aux;
return;
}
//En caso si exista hijo izquierdo, buscamos al mayor de dicho sub árbol.
Node* aux2 = aux->iz;
Node* aux2padre=aux;
hijoiz=true;
while (aux2->der!=nullptr){
aux2padre=aux;
hijoiz=false;
aux2 =aux2->der;
}
aux->elem = aux2->elem;//reemplezamos el elemento.
if (hijoiz){
aux2padre->iz=aux2->iz;
}else {
aux2padre->der=aux2->der;
}
delete aux2;
}
void max(){
Node* Aux = raiz;
while(Aux->der!=nullptr){
Aux=Aux->der;
}
cout<<"El maximo valor es: "<<Aux->elem<<endl;
}
void min(){
Node* Aux=raiz;
while(Aux->iz!=nullptr){
Aux=Aux->iz;
}
cout<<"El mínimo valor es: "<<Aux->elem<<endl;
}
void invertir(Node*& node, float elem){
if (node==nullptr){
node = new Node(elem);
}else if (elem<node->elem){
invertir(node->der, elem);
}
else if (elem>node->elem){
invertir(node->iz, elem);
}
}
float sum(Node *node){
if (node!=nullptr){
float centro=node->elem;
float izq=sum(node->iz);
float der=sum(node->der);
return centro+izq+der;
}
return 0;
}
};
int main(){
SimpleBST *bst = new SimpleBST();
vector<int> v={34, 3,1,67,69,23,4,79,43,20,14,54,12,8,99,15,62,26};
for (auto num:v){
bst->agregar(num);
}
auto prin=[](float x) {cout << x <<" "; };
bst->postorder(prin); cout<<endl;
bst->preorder(prin); cout<<endl;
bst->inorder(prin); cout<<endl;
cout<<bst->buscar(100)<<endl;
cout<<bst->buscar(4)<<endl;
bst->view("simplebst.dot");//para mostrar el arbol de forma visual, despues de correrlo, en la termina escribir !cat simplebst.dot
bst->eliminar(54);
cout<<"--------------------------------------------------------------------"<<endl;
bst->inorder(prin);cout<<endl;
bst->mayor();
bst->menor();
cout<<"-----------------Invertido------------------------------------------"<<endl;
SimpleBST *bst2=new SimpleBST();
vector<int> v2={34, 3,1,67,69,23,4,79,43,20,14,54,12,8,99,15,62,26};
for (auto num : v2){
bst2->invertir(num);
}
bst2->postorder(prin); cout<<endl;
bst2->preorder(prin); cout<<endl;
bst2->inorder(prin); cout<<endl;
bst2->suma();
delete bst;
delete bst2;
return 0;
}
#endif