Skip to content
Snippets Groups Projects

Update cours_4.md

Closed yassin.elhakoun requested to merge (removed):master into master
+ 1
1
@@ -970,7 +970,7 @@ $$
@@ -970,7 +970,7 @@ $$
## 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]);
Loading