lundi 31 juillet 2017

Algorithme de tri stupide en python


#Pour trier une liste on peut aussi utiliser L.sort()

import random as random

def tri_stupide(L):
       
        tri=True
        for i in range(len(L)-1):
                if L[i+1]<L[i]:
                        tri=False
                while tri==False:
                        i=random.randint(0,len(L)-1)
                        j=i=random.randint(0,len(L)-1)
                        L[i]=L[j]
                        print(L)

Aucun commentaire:

Enregistrer un commentaire