Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^5: Recursion: the Towers of Hanoi problem

by abitkin (Monk)
on Oct 25, 2004 at 14:38 UTC ( [id://402234]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub a{if(my$l=pop){a(@_[0,2,1],$l-1);print"Move disc $l from $_[0] to 
    +$_[2]
    ";a(@_[1,0,2],$l-1);}}a 'A'..'C',pop;
    
  2. or download this
    sub a{my$l=pop;a(@_[0,2,1],--$l)."Move disc $l from $_[0] to $_[2]
    ".a(@_[1,0,2],$l)if$l>0;}print a 'A'..'C',pop;
    
  3. or download this
    sub a{if(my$l=pop){a(@_[0,2,1],--$l);print"Move disc $l from $_[0] to 
    +$_[2]
    ";a(@_[1,0,2],$l);}}a 'A'..'C',pop;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://402234]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (7)
As of 2024-04-23 10:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found