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
| //les structures
typedef struct s_produit
{
char nom;
float ref;
struct s_produit *suivant;
} t_produit;
typedef struct ListeRepere
{
t_produit *debut;
t_produit *fin;
int taille;
} t_liste;
//les fonctions
void initialiser_liste(t_liste *liste);
int ins_dans_liste_vide (t_iste * liste, char *nom, float *ref);
int ins_liste (t_liste * liste, char *nom, float *ref);
int supp_debut (t-liste * liste);
int menu (t_liste *liste,int *k);
void affiche (t_liste * liste);
void
initialisation (t_liste * liste)
{
liste->debut = NULL;
liste->fin = NULL;
liste->taille = 0;
}
/* insertion dans une liste vide */
int ins_dans_liste_vide (t_liste * liste, char *nom, float *ref)
{
t_produit *nouveau_produit;
strcpy (nouveau_produit->nom, nom);
strcpy (nouveau_produit->ref, ref);
nouveau_preoduit->suivant = NULL;
liste->debut = nouveau_produit;
liste->fin = nouveau_produit;
liste->taille++;
return 0;
}
/* insertion */
int ins_liste (t_liste * liste, char *nom, float *ref)
{
if (liste->taille < 2)
return -1;
t_produit *courant;
t_produit *nouveau_produit;
t_produit *preced;
int i;
if ((nouveau_produit = (t_produit *) malloc (sizeof (t_produit))) == NULL)
return -1;
if ((nouveau_produit->donnee = (char *) malloc (50 * sizeof (char)))
== NULL)
return -1;
courant = liste->debut;
for (i = 1; i <= taille ; ++i)
if (courant->ref < ref)
courant = courant->suivant;
if (courant->suivant == NULL)
return -1;
strcpy (nouveau_produit->nom, nom);
strcpy (nouveau_produit->ref, ref);
preced=courant;
courant=courant->suivant;
nouveau_produit->suivant = preced->suivant;
preced->suivant = nouveau_produit;
liste->taille++;
return 0;
}
/* affichage de la liste */
void affiche (t_liste * liste)
{
t_produit *courant;
courant = liste->debut;
while (courant != NULL){
printf ("%p - %s\n", courant, courant->nom, courant->ref);
courant = courant->suivant;
}
}
int menu (t_liste *liste,int *k)
{
int choix;
clrscr();
goto x,y(10,2);
printf("********** GESTION DE LA LISTE **********\n");
printf ("1. Inserrer un produit\n");
printf ("2. Extraire un produit\n");
printf ("3. Afficher le contenu de la liste\n");
printf ("4. Quitter\n");
printf ("\n\nFaites votre choix : ");
scanf ("%d", &choix);
getchar();
if(liste->taille == 0 )
choix = 4;
return choix;
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <liste.h>
int main (void)
{
char choix;
char *nom;
float *ref;
t_liste *liste;
produit *courant;
initialisation (liste);
int k;
while (choix != 4){
choix = menu (liste, &k);
switch (choix){
case 1:
printf ("Entrez un produit : ");
scanf ("%s", nom);
getchar ();
do{
printf ("Entrez la référence : ");
scanf ("%d", &ref);
}
ins_liste (liste, nom, ref);
affiche (liste);
break;
case 2:
supp_debut (liste);
if (liste->taille != 0)
printf ("%d produit:deb=%s,fin=%s\n", liste->taille,
liste->debut->donnee, liste->fin->donnee);
else
printf ("liste vide\n");
affiche (liste);
break;
case 3:
printf ("affichage de la liste\n");
affiche (liste);
break;
}
}
return 0;
} |
Partager