-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalgo_parcours.c
371 lines (356 loc) · 9.69 KB
/
algo_parcours.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
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
#include "algo_parcours.h"
#include <assert.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include "arete.h"
#include "cellEnsemble.h"
#include "cellule_adjacence.h"
#include "celluleIncidence.h"
#include "ensemble.h"
#include "file.h"
#include "filePrioriteMin.h"
#include "outilsGraphe.h"
#include "tas.h"
#include "tri.h"
void parcoursLargeur(graphe_t *graph, int sommetOrigine, int sommetFin)
{
/**
* Implémentation avec les indices : faite.
* Résultat : réussis, mauvais placement du defile, bravo le livre !
*/
sommet_t *sommet = (sommet_t*) malloc(graph->nSommets * sizeof(sommet_t));
int u, i;
file_t *queue = creerFile(graph->nSommets);
celluleAdjacence_t *cell = NULL;
for (i = 0; i < graph->nSommets; ++i)
{
sommet[i].couleur = blanc;
sommet[i].distance = INT_MAX;
sommet[i].pere = -1;
}
sommet[sommetOrigine].couleur = gris;
sommet[sommetOrigine].distance = 0;
sommet[sommetOrigine].pere = -1;
enfile(queue, sommetOrigine);
while (!file_isEmpty(queue))
{
u = front(queue);
for (cell = graph->adj[u]->tete; cell != NULL; cell = cell->succ)
{
if (sommet[cell->noeud].couleur == blanc)
{
sommet[cell->noeud].couleur = gris;
sommet[cell->noeud].distance = sommet[u].distance + 1;
sommet[cell->noeud].pere = u;
enfile(queue, cell->noeud);
}
}
sommet[u].couleur = noir;
defile(queue);
}
detruireFile(&queue);
afficherChemin(graph, sommetOrigine, sommetFin, sommet);
free(sommet);
}
/**
* ATTENTION : les d et f seront créés à chaque fois -> récursivité ! Il faut les créer avant la première
* invocation de visiter_PP, c'est-à-dire dans parcoursProfondeurRecursif
*/
void visiter_PP(int u, graphe_t *graph, sommet_t *sommet, int *date, int *d,
int *f)
{
celluleAdjacence_t *cell;
sommet[u].couleur = gris;
++(*date);
d[u] = *date;
for (cell = graph->adj[u]->tete; cell != NULL; cell = cell->succ)
{
if (sommet[cell->noeud].couleur == blanc)
{
sommet[cell->noeud].pere = u;
visiter_PP(cell->noeud, graph, sommet, date, d, f);
}
}
sommet[u].couleur = noir;
f[u] = ++(*date);
}
void parcoursProfondeurRecursif(graphe_t *graph)
{
int i, date, *f = (int*) malloc(graph->nSommets * sizeof(int)), *d =
(int*) malloc(graph->nSommets * sizeof(int));
sommet_t *sommet = (sommet_t*) malloc(graph->nSommets * sizeof(sommet_t));
for (i = 0; i < graph->nSommets; ++i)
{
sommet[i].couleur = blanc;
sommet[i].pere = -1;
}
date = 0;
for (i = 0; i < graph->nSommets; ++i)
{
if (sommet[i].couleur == blanc)
{
visiter_PP(i, graph, sommet, &date, d, f);
}
}
afficherPP(0, graph, sommet, d, f);
free(d), free(f), free(sommet);
}
int genererAcpmKruskal(graphe_t *graph, arete_t **aretesRetenues)
{
set_t **tabEnsembleSommet = NULL;
celluleIncidence_t *cell = NULL;
cell_ensemble_t **tabSommet = NULL;
tas_t *tasArete = NULL;
int i, longueurTabArete;
assert(*aretesRetenues == NULL);
tabEnsembleSommet = (set_t**) malloc(graph->nSommets * sizeof(set_t*));
tabSommet = (cell_ensemble_t **) malloc(
graph->nSommets * sizeof(cell_ensemble_t*));
tasArete = (tas_t*) malloc(sizeof(tas_t));
tasArete->longueur = (graph->nSommets * (graph->nSommets - 1)) / 2; /* Nombre maximal d'arêtes possibles dans tou graphe de n nœuds. */
tasArete->tab = NULL;
for (i = 0; i < graph->nSommets; ++i)
{
/* Va servir de "traducteur" pour les différents sommets des listes d'adjacences */
tabSommet[i] = creerCellEnsemble(i);
tabEnsembleSommet[i] = creerEnsemble(tabSommet[i]);
}
/**
* Récupération de toutes les arêtes puis on les trie
*/
tasArete->tab = (arete_t*) malloc(tasArete->longueur * sizeof(arete_t));
for (i = 0, tasArete->longueur = 1; i < graph->nSommets; ++i)
for (cell = graph->inc[i]->tete; cell != NULL;
cell = cell->succ, ++(tasArete->longueur))
{
tasArete->tab[tasArete->longueur - 1] = *(cell->arete);
}
tasArete->tab = (arete_t*) realloc(tasArete->tab,
tasArete->longueur * sizeof(arete_t));
longueurTabArete = tasArete->longueur - 1;
(*aretesRetenues) = (arete_t*) malloc(longueurTabArete * sizeof(arete_t));
tri_par_tas(tasArete);
for (i = 0; i < tasArete->longueur; ++i)
{
if (trouverEnsemble(tabSommet[tasArete->tab[i].origine])
!= trouverEnsemble(tabSommet[tasArete->tab[i].extremite]))
{
(*aretesRetenues)[i] = tasArete->tab[i];
union_ensemble(tabSommet[tasArete->tab[i].origine],
tabSommet[tasArete->tab[i].extremite]);
}
}
for (i = 0; i < graph->nSommets; ++i)
{
free(tabEnsembleSommet[i]), free(tabSommet[i]);
}
free(tasArete->tab), free(tasArete), free(tabEnsembleSommet), free(
tabSommet);
return longueurTabArete;
}
void afficherAcpmKruskal(arete_t *tabAretesRetenues, int longueurTabArete)
{
int i, poidsMax = 0;
for (i = 0; i < longueurTabArete; ++i)
{
printf("origine : %d, extremite : %d, poids : %d\n",
tabAretesRetenues[i].origine, tabAretesRetenues[i].extremite,
tabAretesRetenues[i].poids);
poidsMax += tabAretesRetenues[i].poids;
}
printf("Poids maximal : %d\n", poidsMax);
free(tabAretesRetenues);
}
void genererAcpmPrim(graphe_t *graph, sommet_t **tab, int sommetOrigine)
{
filePrioriteMin *file = NULL;
celluleIncidence_t *v = NULL;
sommet_t *u;
int i;
file = creerFileMin();
(*tab) = (sommet_t*) malloc(graph->nSommets * sizeof(sommet_t));
for (i = 0; i < graph->nSommets; ++i)
{
(*tab)[i].noeud = i;
(*tab)[i].key = INT_MAX;
(*tab)[i].PointeurPere = NULL; /* Implémentation par indice */
inserer(file, &((*tab)[i]));
}
(*tab)[sommetOrigine].key = 0;
while (!isEmpty(file))
{
u = extraireMin(file);
for (v = graph->inc[u->noeud]->tete; v != NULL; v = v->succ)
{
if (v->arete->poids < (*tab)[v->arete->origine].key)
{
(*tab)[v->arete->extremite].key = v->arete->poids;
(*tab)[v->arete->extremite].PointeurPere = u;
}
}
}
detruireFileMin(&file);
}
void afficherAcpmPrim(sommet_t **tab, int longueurTab)
{
int i, poidsMax = 0;
for (i = 0; i < longueurTab; ++i)
{
if ((*tab)[i].PointeurPere != NULL)
{
printf("origine : %d, extremite : %d, poids : %d\n",
(*tab)[i].PointeurPere->noeud, i, (*tab)[i].key);
}
else
{
printf("origine : NULL, extremite : %d, poids : %d\n", i,
(*tab)[i].key);
}
if ((*tab)[i].key != INT_MAX && (*tab)[i].PointeurPere != NULL)
{
poidsMax += (*tab)[i].key;
}
}
printf("Poids maximal : %d\n", poidsMax);
free(*tab);
*tab = NULL;
}
void source_unique_initialisation(graphe_t *graph, sommet_t **tab,
int sommetOrigine)
{
int i;
*tab = (sommet_t*) malloc(graph->nSommets * sizeof(sommet_t));
for (i = 0; i < graph->nSommets; ++i)
{
(*tab)[i].distance = INT_MAX;
(*tab)[i].noeud = i;
(*tab)[i].PointeurPere = NULL;
}
(*tab)[sommetOrigine].distance = 0;
}
void relacher(sommet_t *tab, arete_t *arete)
{
if (tab[arete->extremite].distance
> (tab[arete->origine].distance + arete->poids))
{
tab[arete->extremite].distance = tab[arete->origine].distance
+ arete->poids;
tab[arete->extremite].PointeurPere = &(tab[arete->origine]);
}
}
sommet_t* bellman_ford(graphe_t *graphe, int sommetOrigine)
{
sommet_t *tabSommet = NULL;
arete_t *tabAretes = NULL;
celluleIncidence_t *cell = NULL;
int longueurAretes = 1, i, j;
for (i = 0; i < graphe->nSommets; ++i)
{
for (cell = graphe->inc[i]->tete; cell != NULL;
cell = cell->succ, ++longueurAretes)
{
tabAretes = (arete_t*) realloc(tabAretes,
longueurAretes * sizeof(arete_t));
tabAretes[longueurAretes - 1] = *(cell->arete);
}
}
source_unique_initialisation(graphe, &tabSommet, sommetOrigine);
for (i = 0; i < (graphe->nSommets - 2); ++i)
{
for (j = 0; j < longueurAretes; ++j)
{
relacher(tabSommet, &(tabAretes[j]));
}
}
for (i = 0; i < longueurAretes; ++i)
{
if (tabSommet[tabAretes[i].extremite].distance
> (tabSommet[tabAretes[i].origine].distance + tabAretes[i].poids))
{
/* retourner FAUX */
return 0;
}
}
free(tabAretes);
/* retourner VRAI */
return tabSommet;
}
void afficherBellman_ford(graphe_t *graph, sommet_t **tab)
{
int i;
for (i = 0; i < graph->nSommets; ++i)
{
if ((*tab)[i].PointeurPere == NULL)
{
printf("sommet origine : %d, pere : NULL, distance : %d\n",
(*tab)[i].noeud, (*tab)[i].distance);
}
else
printf("sommet : %d, pere : %d, distance : %d\n", (*tab)[i].noeud,
(*tab)[i].PointeurPere->noeud, (*tab)[i].distance);
}
free(*tab);
*tab = NULL;
}
/**
* INVALIDE, ne fonctionne pas : segfault.
*/
sommet_t* dijkstra(graphe_t *graphe, int sommetOrigine)
{
filePrioriteMin *file = NULL;
sommet_t *tabSommet = NULL, *u = NULL;
celluleAdjacence_t *v = NULL;
celluleIncidence_t *cell = NULL;
int i;
/*for (i = 0; i < graphe->nSommets; ++i)
{
for (cell = graphe->inc[i]->tete; cell != NULL;
cell = cell->succ, ++longueurAretes)
{
tabAretes = (arete_t*) realloc(tabAretes,
longueurAretes * sizeof(arete_t));
tabAretes[longueurAretes - 1] = *(cell->arete);
}
}*/
for (i = 0; i < graphe->nSommets; ++i)
{
inserer(file, &(tabSommet[i]));
}
source_unique_initialisation(graphe, &tabSommet, sommetOrigine);
while (!isEmpty(file))
{
u = extraireMin(file);
for (i = 0; i < graphe->nSommets; ++i)
{
for (v = graphe->adj[u->noeud]->tete; v != NULL; v = v->succ)
{
for (cell = graphe->inc[u->noeud]->tete;
(cell->arete->origine != u->noeud)
&& (cell->arete->extremite != v->noeud); cell =
cell->succ)
{
relacher(u, cell->arete);
}
}
}
}
return tabSommet;
}
void afficherDijkstra(graphe_t *graph, sommet_t **tab)
{
int i;
for (i = 0; i < graph->nSommets; ++i)
{
if ((*tab)[i].PointeurPere == NULL)
{
printf("sommet origine : %d, pere : NULL, distance : %d\n",
(*tab)[i].noeud, (*tab)[i].distance);
}
else
printf("sommet : %d, pere : %d, distance : %d\n", (*tab)[i].noeud,
(*tab)[i].PointeurPere->noeud, (*tab)[i].distance);
}
free(*tab);
*tab = NULL;
}