Add afficherListe
This commit is contained in:
parent
a0bbe98c37
commit
c4a5e39851
1 changed files with 2 additions and 1 deletions
3
liste.c
3
liste.c
|
@ -31,7 +31,8 @@ Cellule *allouerCellule(char lettre) {
|
|||
}
|
||||
|
||||
void afficherListe(Liste liste, FILE *fichier) {
|
||||
|
||||
for (; liste != NULL; (*liste).suivant) // on parcours la liste
|
||||
fprintf(fichier, "Lettre `%c` ⋅ %d\n", (*liste).lettre, (*liste).frequence); // on affiche l'élément actuel (lettre + fréquence)
|
||||
}
|
||||
|
||||
void viderListe(Liste liste) {
|
||||
|
|
Reference in a new issue