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

Merge branch 'yassin.elhakoun-master-patch-18756' into 'master'

Update cours_7.md (ligne 973 et 977 deux ";" étaient manquants alors que...

See merge request algorithmique/cours!44
parents 92b3067f c1654c6f
Branches
No related tags found
No related merge requests found
...@@ -970,11 +970,11 @@ $$ ...@@ -970,11 +970,11 @@ $$
## Complexité du tri par sélection? ## Complexité du tri par sélection?
```C ```C
int ind = 0 int ind = 0;
while (ind < SIZE-1) { while (ind < SIZE-1) {
min = find_min(tab[ind:SIZE]); min = find_min(tab[ind:SIZE]);
swap(min, tab[ind]); swap(min, tab[ind]);
ind += 1 ind += 1;
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment