-
Notifications
You must be signed in to change notification settings - Fork 1
/
Etudiant.c
92 lines (77 loc) · 2.44 KB
/
Etudiant.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
/**Auteurs : Prenom Nom **/
/** Alexandre Szymkiw **/
/** Simon Fessy **/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "Etudiant.h"
#define MAX 200
/****************************************/
/**Fonction : initialiserEtudiant*******/
/**Params : **************************/
/**Sert à initialiser les piles*******/
/************************************/
PileEtudiants *initialiserEtudiant()
{
PileEtudiants *pileEtudiant = malloc(sizeof(pileEtudiant));
pileEtudiant->premier = NULL;
pileEtudiant->taille = 0;
return pileEtudiant;
}
/***************************************************/
/**Fonction : ajouterEtudiant**********************/
/**Params : PileEtudiants * et char * et char * */
/**Sert à ajouter un étudiant dans la pile*******/
/***********************************************/
void ajouterEtudiant(PileEtudiants *p, char *chaineNom, char *chainePrenom)
{
Etudiant *newEtu = (Etudiant *)malloc(sizeof(Etudiant));
newEtu->nom = (char *)malloc(MAX*sizeof(*chaineNom));
newEtu->prenom = (char *)malloc(MAX*sizeof(*chainePrenom));
if (p == NULL || newEtu == NULL)
{
exit(EXIT_FAILURE);
}
strcpy(newEtu->nom,chaineNom);
strcpy(newEtu->prenom,chainePrenom);
newEtu->suivant = p->premier;
p->premier = newEtu;
p->taille++;
}
/***************************************************/
/**Fonction : afficherEtudiant*********************/
/**Params : PileEtudiants * ********************/
/**Sert à afficher les étudiants de la pile******/
/***********************************************/
void afficherEtudiant(PileEtudiants *p){
int i = 1;
if (p == NULL)
{
exit(EXIT_FAILURE);
}
Etudiant *etu = p->premier;
if(etu == NULL){
printf("Aucune donnee !! \n");
}
printf("id Prenom Nom\n");
while (etu != NULL)
{
printf("%d) %s %s\n",i,etu->prenom, etu->nom);
etu = etu->suivant;
i++;
}
printf("\n");
}
void supprimerEtudiant(PileEtudiants *p){
printf("\n");
if(p->taille == 0){
printf("\n Aucune matiere a supprimer");
}else{
Etudiant *suppEtu = p->premier;
p->premier = p->premier->suivant;
free(suppEtu->nom);
free(suppEtu->prenom);
free(suppEtu);
p->taille--;
}
}