Skip to content
Snippets Groups Projects
Verified Commit 0eea224b authored by orestis.malaspin's avatar orestis.malaspin
Browse files

typo

parent 6b30b013
No related branches found
No related tags found
No related merge requests found
...@@ -426,7 +426,7 @@ Ainsi, la complexité du tri par base est $\mathcal{O}(b\cdot N)$. --> ...@@ -426,7 +426,7 @@ Ainsi, la complexité du tri par base est $\mathcal{O}(b\cdot N)$. -->
```python ```python
rien tri_fusion(entier taille, entier tab[taille]) rien tri_fusion(entier taille, entier tab[taille])
entier tab_tmp[taille]; entier tab_tmp[taille];
entier nb_etapes = log_2(size) + 1; entier nb_etapes = log_2(taille) + 1;
pour etape de 0 a nb_etapes - 1: pour etape de 0 a nb_etapes - 1:
entier gauche = 0; entier gauche = 0;
entier t_tranche = 2**etape; entier t_tranche = 2**etape;
......
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