parcourslargeur (noeud)
?
1
2
3
4
5
6
7
8
9
10
11
ParcoursLargeur(Noeud)
Pour n = 1 à Hauteur(Noeud)
AfficheNiveau(Noeud, n);
AfficheNiveau(Noeud, niveau)
SI Noeud = NULL ALORS retourne;
SI niveau = 1 ALORS
ECRIRE(Noeud.val);
SINON SI niveau > 1, ALORS
AfficheNiveau(Noeud->gauche, niveau-1);
AfficheNiveau(Noeud->droit, niveau-1);