This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_dijkstra.c
84 lines (66 loc) · 1.94 KB
/
test_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
#include<stdio.h>
#include "liste.h"
#include "truc.h"
#include "abr.h"
#include "ligne.h"
#include "dijkstra.h"
int main(int argc, char *argv[])
{
Un_elem *liste_sta = NULL;
Une_ligne *liste_ligne = NULL;
Un_elem *liste_con = NULL;
Un_elem *pcc = NULL;
Un_truc *sta_dep, *sta_arr;
Un_nabr *abr_sta;
if (argc != 6)
{
fprintf(stderr, "Usage : test_dijkstra f_stations f_ligne f_connexion sta_dep sta_arr\n");
return 1;
}
if ((liste_sta = lire_stations(argv[1])) == NULL)
{
fprintf(stderr, "Erreur : Lecture fichier stations\n");
return 1;
}
abr_sta = construire_abr(liste_sta);
if ((liste_ligne = lire_lignes(argv[2])) == NULL)
{
fprintf(stderr, "Erreur : Lecture fichier lignes\n");
detruire_liste_et_truc(liste_sta);
detruire_abr(abr_sta);
return 1;
}
if ((liste_con = lire_connexions(argv[3], liste_ligne, abr_sta)) == NULL)
{
fprintf(stderr, "Erreur : Lecture fichier connexion\n");
detruire_liste_et_truc(liste_sta);
detruire_lignes(liste_ligne);
detruire_abr(abr_sta);
return 1;
}
if ((sta_dep = chercher_station(abr_sta, argv[4])) == NULL)
{
fprintf(stderr, "Erreur : Station depart inconnue : %s\n", argv[4]);
detruire_liste_et_truc(liste_sta);
detruire_lignes(liste_ligne);
detruire_abr(abr_sta);
return 1;
}
if ((sta_arr = chercher_station(abr_sta, argv[5])) == NULL)
{
fprintf(stderr, "Erreur : Station arrivee inconnue : %s\n", argv[5]);
detruire_liste_et_truc(liste_sta);
detruire_lignes(liste_ligne);
detruire_abr(abr_sta);
return 1;
}
dijkstra(liste_sta, sta_dep);
pcc = cherche_chemin(sta_arr);
ecrire_liste(stdout, pcc);
printf("temps de parcours = %f minutes \n", sta_arr->user_val);
detruire_liste(pcc);
detruire_abr(abr_sta);
detruire_liste_et_truc(liste_sta);
detruire_lignes(liste_ligne);
return 0;
}