-
Notifications
You must be signed in to change notification settings - Fork 0
/
fap_bug.c
69 lines (60 loc) · 1.24 KB
/
fap_bug.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
#include "fap.h"
#include <unistd.h>
#include <stdlib.h>
fap creer_fap_vide()
{
return NULL;
}
fap inserer(fap f, int element, int priorite)
{
fap nouveau, courant, precedent;
/* nouveau maillon */
nouveau = (fap) malloc(sizeof(struct maillon));
nouveau->element = element;
nouveau->priorite = priorite;
/* insertion en tete */
if ((f == NULL) || (priorite < f->priorite))
{
nouveau->prochain = f;
f = nouveau;
}
/* recherche de la bonne position et insertion */
else
{
precedent = f;
courant = f->prochain;
while ((courant != NULL) && (priorite >= courant->priorite))
{
precedent = courant;
courant = courant->prochain;
}
precedent->prochain = nouveau;
nouveau->prochain = courant;
}
return f;
}
fap extraire(fap f, int *element, int *priorite)
{
fap courant;
/* extraire le premier element si la fap n'est pas vide */
if (f != NULL)
{
courant = f;
*element = courant->element;
*priorite = courant->priorite;
f = courant->prochain;
free(courant);
}
return f;
}
int est_fap_vide(fap f)
{
return f == NULL;
}
void
detruire_fap(fap f)
{
if (f != NULL)
detruire_fap(f->prochain);
free(f);
}