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

i guess the slides are done

parent bff60c0d
No related branches found
No related tags found
No related merge requests found
...@@ -486,7 +486,7 @@ Trier un tableau par ordre croissant. ...@@ -486,7 +486,7 @@ Trier un tableau par ordre croissant.
```C ```C
ind = 0 ind = 0
boucle (ind < SIZE) { boucle (ind < SIZE-1) {
Trouver le minimum du tableau, tab_min[ind:SIZE]. Trouver le minimum du tableau, tab_min[ind:SIZE].
Échanger tab_min avec tab[ind] Échanger tab_min avec tab[ind]
ind += 1 ind += 1
...@@ -497,7 +497,11 @@ boucle (ind < SIZE) { ...@@ -497,7 +497,11 @@ boucle (ind < SIZE) {
## Implémentation par groupe de 3 ## Implémentation par groupe de 3
* Initialiser aléatoirement un tableau de `double` de taille 10;
* Afficher le tableau;
* Trier par sélection le tableau;
* Afficher le résultat trié;
* Vérifier algorithmiquement que le résultat est bien trié.
# La fin # La fin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment