-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
61 lines (32 loc) · 1.22 KB
/
main.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
#include "funciones.h"
using namespace std;
int main(){
Graph g(9999);
std::ifstream archivo;
archivo.open("/Users/joaquinandresen/Desktop/Algoritmos y Programación II/TP6/TP6/vuelos.txt");
int longitud = longitudArchivo(archivo) - 1;
Ruta* rutas[longitud];
for (int i = 0; i < longitud; i++) {
Ruta* a = crearVuelo(archivo);
rutas[i] = a;
g.addEdge(a->obtenerAscii_p(), a->obtenerAscii_l(), a->obtenerCos());
}
string partida;
string destino;
cout << "Ingrese el codigo IATA de partida: ";
cin >> partida;
cout << "Ingrese el codigo IATA del destino: ";
cin >> destino;
cout << endl;
cout << "La ruta mas economica es: " << endl;
cout << endl;
cout << "Partida: " << endl;
mostrarDatos(partida, rutas, longitud);
cout << endl;
cout << "Destino: " << endl;
mostrarDatos(destino, rutas, longitud);
cout << endl;
cout << "El costo más bajo de " << partida << " a " << destino << " es: " << g.shortestPath(calcularAscii(partida), calcularAscii(destino)) << endl;
archivo.close();
return 0;
}