First commit
This commit is contained in:
34
IUT/Info1/TD/Exercices/exam1/fonction.h
Normal file
34
IUT/Info1/TD/Exercices/exam1/fonction.h
Normal file
@@ -0,0 +1,34 @@
|
||||
struct Etudiant {
|
||||
char nom[21];
|
||||
char prenom[21];
|
||||
float moyenne_generale;
|
||||
unsigned int scolarisation; // 1 pour scolarisé, 0 pour déscolarisé
|
||||
};
|
||||
|
||||
struct Node {
|
||||
struct Etudiant racine;
|
||||
struct Node gauche;
|
||||
struct Node droit;
|
||||
}
|
||||
|
||||
unsigned int heapsortPromo(
|
||||
struct Etudiant promo[],
|
||||
unsigned int taille_pratique
|
||||
);
|
||||
|
||||
unsigned int saisiePromo(
|
||||
struct Etudiant promo[],
|
||||
unsigned int taille_relle
|
||||
);
|
||||
|
||||
unsigned int filtreDemission(
|
||||
struct Etudiant promo[],
|
||||
unsigned int taille_pratique
|
||||
);
|
||||
|
||||
float moyenne(
|
||||
struct Etudiant promo[],
|
||||
unsigned int taille_pratique
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user