Skip to content
Snippets Groups Projects
Commit da459deb authored by Gabriel Marino J's avatar Gabriel Marino J
Browse files

Retour pseudo code corrigé (ou alors changer la signature du pseudo code)

parent 979a3941
No related branches found
No related tags found
No related merge requests found
......@@ -461,11 +461,12 @@ node *matrix_to_qt(int nb_li, int nb_co, int matrix[nb_li][nb_co], int depth)
```C
matrice arbre_à_matrice(arbre)
matrice = creer_matrice(nb_lignes(arbre), nb_colonnes(arbre))
pour li de 0 à nb_lignes(matrice)
pour co de 0 à nb_colonnes(matrice)
noeud = position(li, co, arbre)
matrice[co][li] = noeud.info
retourne arbre
retourne matrice
```
. . .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment