Add skeleton for pile and file
This commit is contained in:
parent
8709e79aa2
commit
bbaf5fea8e
2 changed files with 34 additions and 0 deletions
17
algorithmique/piles-files/file.algo
Normal file
17
algorithmique/piles-files/file.algo
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
Algorithme : Création d'une file
|
||||||
|
|
||||||
|
Début
|
||||||
|
Variable F : File
|
||||||
|
Procédure InitialiserFile(var F : File)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Fonction EstFileVide(var F : File) : Booléen
|
||||||
|
...
|
||||||
|
FinFonction
|
||||||
|
Procédure Emfiler(var x : Entier, var F : File)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Procédure Défiler(var x : Entier, var F : File)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Fin
|
17
algorithmique/piles-files/pile.algo
Normal file
17
algorithmique/piles-files/pile.algo
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
Algorithme : Création d'une pile
|
||||||
|
|
||||||
|
Début
|
||||||
|
Variable P : Pile
|
||||||
|
Procédure InitialiserPile(var P : Pile)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Fonction EstPileVide(var P : Pile) : Booléen
|
||||||
|
...
|
||||||
|
FinFonction
|
||||||
|
Procédure Empiler(var x : Entier, var P : Pile)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Procédure Dépiler(var x : Entier, var P : Pile)
|
||||||
|
...
|
||||||
|
FinProcédure
|
||||||
|
Fin
|
Loading…
Reference in a new issue