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

removed ;

parent 35b075b5
No related branches found
No related tags found
No related merge requests found
......@@ -189,9 +189,9 @@ rien quicksort(entier tableau[], entier ind_min, entier ind_max)
```C
entier partition(entier tableau[], entier ind_min, entier ind_max)
pivot = tableau[ind_max]; // choix arbitraire
i = ind_min;
j = ind_max-1;
pivot = tableau[ind_max] // choix arbitraire
i = ind_min
j = ind_max-1
tant que i < j:
en remontant i trouver le premier élément > pivot
en descendant j trouver le premier élément < pivot
......
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