-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdijkstra.c
165 lines (103 loc) · 2.59 KB
/
dijkstra.c
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
/*
* Dijkstra's algorithm.
*/
#include <stdio.h>
int output[50], ind = 0;
const long PInfinit = 888;
int n;//in this variable we hold the number of nodes.
int road[50][50], R[50], F[50], S[50];
FILE *fin, *fout; //FILE I/O handler for files
int ender;
//prototypes
void read(const char *);
void writeToFile(const char *);
void dijkstra();
void solution(int);
void get(int);
int main() {
printf("Arrival Node=");
scanf("%d",&ender);
read("road.in");
dijkstra();
solution( ender );
writeToFile("dijkstra.out");
return(0);
}
void read(const char* filename) {
int i,j,x,y;
float c;
fin = fopen(filename, "r");
fscanf(fin, "%d", &n);
for(i=1;i<=n;i++) {
for(j=1;j<=n;j++) {
if(i == j) {
road[i][j] = 0;
} else {
road[i][j] = PInfinit;
}
}
}
while(!feof(fin)) {
fscanf(fin, "%d %d %f", &x, &y, &c);
road[x][y] = c;
}
for(i=1;i<=n;i++) {
for(j=1;j<=n;j++) {
printf("%5d ", road[i][j]);
}
printf("\n");
}
}
void dijkstra() {
int i,j,k,
start,
min,
pos = 0;
start = 1;
for(i=1;i<=n;i++) {
R[i] = road[start][i];
if(i!=start)
if(R[i] < PInfinit) F[i] = start;
}
S[start] = 1;
//execute n-1 times
for(i=1;i<=n-1;i++) {
min = PInfinit;
for(j=1;j<=n;j++) {
if(S[j] == 0)
if(R[j]<min){
min = R[j];
pos = j;
}
}
S[ pos ] = 1;
for(j=1;j<=n;j++) {
if(S[j] == 0)
if(R[ j ] > R[ pos ] + road[ pos ][ j ]) {
R[ j ] = R[ pos ] + road[ pos ][ j ];
F[ j ] = pos;
}
}
}
}
void solution( node ) {
int i;
get(node);
printf("The cost from 1 to %d = %d\nThe shortest path is -> ", ender, R[ender]);
for(i=0;i<n;i++) {
if(output[i]) printf("%d ", output[i]);
}
}
void get( node ) {
if(F[ node ]) get( F[ node ] );
output[ind++] = node;
}
void writeToFile(const char *filename) {
int i;
fout = fopen(filename,"w");
fprintf(fout, "The cost from 1 to %d is %d\n The shortest path is -> \n", ender, R[ender]);
for(i=0;i<n;i++) {
if(output[i]) fprintf(fout, "%d ", output[i]);
}
fclose( fout );
}