lundi 31 juillet 2017

Algorithme python résolvant le problème des tours de Hanoï en python


Conditions initiales : 1 anneaux sur la tour "a", 2 sur la "b" et 3 sur la "c".

def hanoi(n,a=1,b=2,c=3):
   
    if n > 0:
       
        hanoi(n-1,a,c,b)
        hanoi(n-1,b,a,c)

Aucun commentaire:

Enregistrer un commentaire