un petit problème : listes chainés
slt, j'ai un ptit programme (listes chainés). ya un problème mais je sais pa comment le corriger. svp pouvez vous m'aider.
Code:
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
|
#include<stdio.h>
#include<malloc.h>
#include<conio.h>
typedef struct noeud
{
int x;
struct noued *suivant;
} noeud;
typedef noeud *liste;
liste creer()
{
return NULL;
}
void saisir(int *n)
{
printf("Donnez le nombre d\'element : ");
scanf("%d",&(*n));
}
liste adjq(liste ancienne, int el)
{
liste y,courant;
y=(noeud*)malloc(sizeof(noeud));
y -> x = el;
y -> suivant = NULL;
if(!ancienne)
ancienne = y;
else {
courant = ancienne;
while(courant -> suivant)
courant = courant -> suivant;
courant -> suivant = y;
}
return ancienne;
}
void remplire(liste p, int n)
{
int i;
int el;
for(i=0; i<n; i++)
{
printf("Donnez un element : ");
scanf("%d", &el);
p=adjq(p,el);
}
}
void afficher(liste p)
{
liste courant;
if(!p)
printf("La liste est vide\n");
else {
courant = p;
printf("%d", courant -> x);
while(courant -> suivant != NULL)
{
courant = courant -> suivant;
printf("%d", courant -> x);
}
}
}
int main()
{
liste p;
p=creer();
int n;
saisir(&n);
remplire(p,n);
afficher(p);
getch();
} |