-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoordinates.cpp
96 lines (76 loc) · 1.85 KB
/
coordinates.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
#include <iostream>
#include <fstream>
#include <cmath>
#include <cstdlib>
#include <string>
using namespace std;
void matrizAdyacencia(int tsp127[][2]);
int main()
{
// Abre el archivo de TSP:
ifstream archivo;
archivo.open("bays127.tsp");
// Variables necesarias:
int tsp127[127][2];
// Separa casilla por casilla:
string casilla = "";
int fila = 0;
int columna = 0;
while(archivo.good())
{
// Obtiene el dato y lo guarda en la matriz
getline(archivo, casilla, ',');
// Guarda en la posiciOn correspondiente a la matriz:
//cout<<stoi(casilla)<<" ";
tsp127[fila][columna] = stoi(casilla);
columna++;
if(columna==2){
columna=0;
fila++;
}
if(fila==127){
break;
}
}
// Imprime la matriz:
matrizAdyacencia(tsp127);
}
void matrizAdyacencia(int tsp127[][2])
{
for (int row = 0; row < 127; row++)
{
for(int column = 0; column < 2; column++)
{
cout<<"["<<tsp127[row][column]<<"]";
}
cout<<endl;
}
printf("++++++++++++++++++++++++++++++++++\n");
printf("++++++++++++++++++++++++++++++++++\n");
printf("++++++++++++++++++++++++++++++++++\n");
printf("++++++++++++++++++++++++++++++++++\n");
double matrixAdy[127][127];
double distance=0;
for (int row = 0; row < 127; row++)
{
for(int cl1 = 0; cl1 < 127; cl1++)
{
distance=(sqrt((pow((tsp127[cl1][0]-tsp127[row][0]),2)+pow((tsp127[cl1][1]-tsp127[row][1]),2))));
matrixAdy[row][cl1]=distance;
matrixAdy[cl1][row]=distance;
}
}
printf("++++++++++++++++++++++++++++++++++\n");
printf("++++++++++++++++++++++++++++++++++\n");
// Guarda el archivo como una matriz en un archivo nuevo .csv:
ofstream miarchivo("tspx.csv");
for(int row = 0; row < 127; row++)
{
for(int column = 0; column < 127; column++)
{
miarchivo<<matrixAdy[row][column]<<",";
}
miarchivo<<endl;
}
miarchivo.close();
}