Des tableaux plus corrects !

This commit is contained in:
Geoffrey Frogeye 2015-03-11 22:33:28 +01:00
parent 720c8cffef
commit 05f8cb6b50

View file

@ -208,8 +208,8 @@ def afficher_tableau(donnees):
question(1)
tableau = [['i ', 'croissante ', 'decroissante', 'aléatoire ']]
for i in range(2, 102):
tableau.append([i - 1, tri_et_compte(tri_selection, liste_croissante(i))[1], tri_et_compte(
for i in range(1, 101):
tableau.append([i, tri_et_compte(tri_selection, liste_croissante(i))[1], tri_et_compte(
tri_selection, liste_decroissante(i))[1], tri_et_compte(tri_selection, liste_alea(i, 0, 500))[1]])
afficher_tableau(tableau)
@ -220,8 +220,8 @@ partie("Analyse du tri par insertion")
question(1)
tableau = [tableau[0]]
for i in range(2, 102):
tableau.append([i - 1, tri_et_compte(tri_insertion, liste_croissante(i))[1], tri_et_compte(
for i in range(1, 101):
tableau.append([i, tri_et_compte(tri_insertion, liste_croissante(i))[1], tri_et_compte(
tri_insertion, liste_decroissante(i))[1], tri_et_compte(tri_insertion, liste_alea(i, 0, 500))[1]])
afficher_tableau(tableau)