-
Notifications
You must be signed in to change notification settings - Fork 0
/
principalGrafo.cpp
300 lines (271 loc) · 13.4 KB
/
principalGrafo.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
/*!
\file principalGrafo.cpp
\brief Programa principal de la práctica 4 de ED: Grafo Abarcador de coste mínimo
\author Carlos Luque Córdoba
\date 29/05/2018
\version 1.0
*/
/*!
\mainpage Implementación de un Grafo Abarcador de coste mínimo
\author Carlos Luque Córdoba
\date 29/05/2018
\version 1.0
*/
// Para los flujos de entrada y salida y para usar locale
#include <cstdlib>
#include <iostream>
#include <string>
#include <vector>
#include "macros.hpp"
#include "distancia.hpp"
#include "Punto.hpp"
#include "Vertice.hpp"
#include "Lado.hpp"
#include "Grafo.hpp"
#include "funcionesAuxiliares.hpp"
/*!
\brief Programa principal de la práctica 4: Grafo Abarcador de coste mínimo
\return int
*/
int main(){
char nombreFichero2[10];
std::ifstream grap;
std::ofstream png;
bool value;
std::vector<std::vector<float> > matriz;
std::vector<ed::Lado<ed::Punto<float> > > l;
int opcion;
std::string nombreFichero;
bool direct, val=false, p=false, k=false;
std::cout<<RESET<<CLEAR_SCREEN<<std::endl;
direct=ed::principio();
ed::Grafo <ed::Punto<float> > graph(direct);
ed::Grafo <ed::Punto<float> > graph2(direct);
ed::Grafo <ed::Punto<float> > graph3(direct);
do{
// Se elige la opción del menún
opcion = ed::menu();
std::cout << CLEAR_SCREEN;
PLACE(3,1);
// Se ejecuta la opción del menú elegida
switch(opcion){
case 0:
std::cout << INVERSE;
std::cout << "Fin del programa" << std::endl;
std::cout << RESET;
break;
///////////////////////////////////////////////////////////////////
case 1:
std::cout<<BIPURPLE<< "[1] Comprobar si el Grafo tiene vertices"<<RESET<< std::endl;
if(graph.getVectorVertices().size()==0)
std::cout<<ONIRED<<BIYELLOW<<"El Grafo está vacío"<<RESET<<std::endl;
else
std::cout<<BIGREEN<<"Al menos hay un Verice en el Grafo"<<RESET<<std::endl;
break;
//////////////////////////////////////////////////////////////////////////////
case 2:
std::cout<<BIPURPLE<<"[2] Cargar el Grafo de vertices y/o lados desde ficheros"<<RESET<<std::endl;
ed::cargarFichero(graph, direct);
break;
case 3:
PLACE(1,1);
std::cout<<BIPURPLE<<"[3] Grabar las matrices de adyacencia en un fichero"<<RESET<<std::endl;
if(graph.getVectorVertices().size()>0){
val=ed::grabarFichero(graph, p, k);
}else{
std::cout<<ONIRED<<BIYELLOW<<"El Grafo está vacío"<<RESET<<std::endl;
}
break;
//////////////////////////////////////////////////////////////////////////////
case 4:
PLACE(1,1);
std::cout <<BIPURPLE<< "[4] Mostrar los vertices y lados del Grafo" <<RESET<< std::endl;
if(graph.getVectorVertices().size()==0 && graph.getVectorLado().size()==0){
std::cout<<ONIRED<<BIYELLOW<<"No hay vertices o lados para mostrar"<<RESET<<std::endl;
}else{
if(graph.getVectorVertices().size()>0){
PLACE(2,1);
std::cout <<BIYELLOW<< "Estos son los vertices del Grafo con su etiqueta" <<RESET<< std::endl;
PLACE(3,1);
graph.imprimirVertices();
PLACE(25,1);
std::cout << "Pulse ";
std::cout << BIGREEN;
std::cout << "ENTER";
std::cout << RESET;
std::cout << " para mostrar la siguiente ";
std::cout << INVERSE;
std::cout << "los lados";
std::cout << RESET;
// Pausa
std::cin.ignore();
PLACE(2,1);
std::cout << CLEAR_SCREEN;
}
if(graph.getVectorLado().size()>0){
PLACE(1,1);
std::cout <<BIPURPLE<< "[4] Mostrar los vertices y lados del Grafo" <<RESET<< std::endl;
PLACE(2,1);
std::cout <<BIYELLOW<< "Estos son los lados del Grafo" <<RESET<< std::endl;
PLACE(3,1);
graph.imprimirLados();
}
}
break;
case 5:
PLACE(1,1);
std::cout<<BIPURPLE<< "[5] Mostrar la Matriz de Adyacencias: " <<RESET<< std::endl;
if(graph.getVectorVertices().size()<2 && graph.getVectorLado().size()<1){
std::cout<<ONIRED<<BIYELLOW<<"No hay suficientes vertices y lados como para crear una matriz"<<RESET<<std::endl;
}else{
graph.crearMatriz(graph.getVectorVertices(), graph.getVectorLado(), graph.getVectorVertices().size()+1);
graph.crearMatrizSinLabels(graph.getVectorVertices(), graph.getVectorLado());
graph.imprimirMatriz(graph.getVectorVertices(), graph.getMatriz(), graph.getVectorVertices().size()+1);
val=true;
}
break;
//////////////////////////////////////////////////////////////////////////////
case 6:
PLACE(1,1);
std::cout <<BIPURPLE<<"[6] Algoritmo de Prim"<<RESET<< std::endl;
if(graph.getDirected()==false){
if(val==false){
std::cout<<ONIRED<<BIYELLOW<<"Matriz de Adyacencias no creada aún"<<RESET<<std::endl;
}else{
graph2.setMatrizWLabels(ed::prim(graph, graph2));
graph.imprimirMatrizSinLabels(graph.getVectorVertices(), graph2.getMatrizWLabels());
graph.recogerCamino(graph.getPadre(), graph.getHijo(), graph.getCoste());
std::cout<<BIWHITE<<"El coste mínimo del arbol abarcador de Prim es: "<<graph.getMax()<<RESET<<std::endl;
p=true;
}
}else
std::cout<<BIRED<<"No se puede ejecutar Prim con un grafo dirigido ni no conexo"<<RESET<<std::endl;
break;
case 7:
PLACE(1,1);
std::cout <<BIPURPLE<< "[7] Algoritmo de Kruskal"<<RESET<< std::endl;
if(graph.getDirected()==false){
if(val==false){
std::cout<<ONIRED<<BIYELLOW<<"Matriz de Adyacencias no creada aún"<<RESET<<std::endl;
}else{
graph2.setMatrizWLabels(ed::kruskal(graph, graph2));
graph.imprimirMatrizSinLabels(graph.getVectorVertices(), graph2.getMatrizWLabels());
graph.recogerCamino(graph.getPadre(), graph.getHijo(), graph.getCoste());
std::cout<<BIWHITE<<"El coste mínimo del arbol abarcador de Kruskal es: "<<graph.getMax()<<RESET<<std::endl;
k=true;
}
}else
std::cout<<BIRED<<"No se puede ejecutar Kruskal con un grafo dirigido ni no conexo"<<RESET<<std::endl;
break;
case 8:
std::cout <<BIPURPLE<< "[8] Borrar los lados de un Vertice" <<RESET<<std::endl;
if(graph.getVectorVertices().size()>0){
ed::borrarVerticeLados(graph);
std::cin.ignore();
}else
std::cout<<BIRED<<"El grafo está vacío, inserte vertices antes de borrar alguno"<<std::endl;
break;
//////////////////////////////////////////////////////////////////////////////
case 9:
PLACE(1,1);
std::cout <<BIPURPLE<< "[9] Borrar todos los vertices y lados" <<RESET<< std::endl;
if(graph.getVectorVertices().size()==0)
std::cout<<ONIRED<<BIYELLOW<<"El Grafo ya está vacío"<<RESET<<std::endl;
else{
std::cout<<BIYELLOW<<"Se va a proceder a eliminar los "<<graph.getVectorVertices().size()<<" vertices y "<<graph.getVectorLado().size()<<" lados del grafo"<<RESET<<std::endl;
graph.removeAllVertexAndEdges();
std::cout<<BIWHITE<<"Actualmente hay "<<graph.getVectorVertices().size()<<" vertices y "<<graph.getVectorLado().size()<<" lados en el grafo"<<RESET<<std::endl;
if(graph.getVectorVertices().size()==0 && graph.getVectorLado().size()==0)
std::cout<<BIGREEN<<"Se han eliminado los elementos del grafo correctamente"<<RESET<<std::endl;
}
break;
case 10:
PLACE(1,1);
std::cout <<BIPURPLE<< "[10] Insertar una Vertice" <<RESET<< std::endl;
ed::leerVertice(graph);
if(direct==false){
std::cout<<BIRED<<"COMO EL GRAFO NO ES DIRIGIDO NO INTENTE ACCEDER A LOS ALGORITMOS \nSIN AÑADIR ANTES TODOS LOS LADOS POSIBLES CON A VERTICE"<<RESET<<std::endl;
}
std::cin.ignore();
break;
case 11:
PLACE(1,1);
std::cout <<BIPURPLE<< "[11] Insertar un Lado" <<RESET<<std::endl;
if(graph.getVectorVertices().size()>1){
ed::leerLado(graph);
std::cin.ignore();
}else{
std::cout<<BIRED<<"Hay menos de dos vertices en el grafo, por favor añada más"<<RESET<<std::endl;
std::cin.ignore();
}
break;
case 12:
PLACE(1,1);
std::cout <<BIPURPLE<< "[12] Generar el Grafo en PNG" <<RESET<<std::endl;
if(graph.getDirected()==true){
if(graph.getVectorVertices().size()==0)
std::cout<<ONIRED<<BIYELLOW<<"El Grafo está vacío y no se puede generar el PNG del Grafo"<<RESET<<std::endl;
else{
std::cout<<BIBLUE<<"Introduce el nombre del fichero acabado en .dot: ";
nombreFichero="grafoDirigido.dot";
std::cout<<RESET<<std::endl;
l=graph.getVectorLado();
png.open(nombreFichero.c_str());
if(png.is_open()){
png<<l;
png.close();
value=true;
}else
value=false;
if(value){
std::cout<<BIGREEN<<"\nEl fichero .dot ha sido generado con exito, debe ejecutar el comando que se \nadjunta en el fichero comando.txt situado en el directorio"<<RESET<<std::endl;
}
else{
std::cout<<BIRED<<"Error al cargar el fichero"<<RESET<<std::endl;
std::cin.ignore();
}
}
}else
std::cout<<BIRED<<"Para generar el arbol, debe ser dirigido"<<RESET<<std::endl;
break;
case 13:
PLACE(1,1);
std::cout <<BIBLUE<< "[13] Generar el PNG de Prim y Kruskal"<<RESET<<std::endl;
if(p && k){
ed::generarPNGPrim(nombreFichero2, graph.getPadre(), graph.getHijo(), graph.getCoste());
ed::generarPNGKruskal(nombreFichero2, graph.getPadre(), graph.getHijo(), graph.getCoste());
std::cout<<BIYELLOW<<"Deberá ejecutar los comandos almacenados en el fichero comandos del directorio"<<RESET<<std::endl;
std::cin.ignore();
}else{
std::cout<<ONIRED<<BIYELLOW<<"Aún no se ha usado el Algoritmo de Prim o el de Kruskal"<<RESET<<std::endl;
}
break;
//////////////////////////////////////////////////////////////////////////////
default:
std::cout << BIRED;
std::cout << "Opción incorrecta ";
std::cout << RESET;
std::cout << "--> ";
std::cout << ONIRED;
std::cout << opcion << std::endl;
std::cout << RESET;
}
if (opcion !=0)
{
PLACE(25,1);
std::cout << "Pulse ";
std::cout << BIGREEN;
std::cout << "ENTER";
std::cout << RESET;
std::cout << " para mostrar el ";
std::cout << INVERSE;
std::cout << "menú";
std::cout << RESET;
// Pausa
std::cin.ignore();
std::cout << CLEAR_SCREEN;
}
}while(opcion!=0);
graph.removeAllVertexAndEdges();
return 0;
}