19 lines
452 B
Python
19 lines
452 B
Python
def echange(tab, i, j):
|
|
'''Echange les éléments d'indice i et j dans le tableau tab.'''
|
|
temp = ...
|
|
tab[i] = ...
|
|
tab[j] = ...
|
|
|
|
def tri_selection(tab):
|
|
'''Trie le tableau tab dans l'ordre croissant
|
|
par la méthode du tri par sélection.'''
|
|
N = len(tab)
|
|
for k in range(...):
|
|
imin = ...
|
|
for i in range(..., N):
|
|
if tab[i] < ...:
|
|
imin = i
|
|
echange(tab, ..., ...)
|
|
|
|
|