tower of hanoi
java
5 years, 5 months ago
class Toh
{
static void towerOfHanoi(int n, char from_rod, char to_rod, char aux_rod)
{
if (n == 1)
{
System.out.println("Move disk 1 from rod " + from_rod + " to rod " + to_rod);
return;
}
else
{
towerOfHanoi(n-1, from_rod, aux_rod, to_rod);
System.out.println("Move disk " + n + " from rod " + from_rod + " to rod " + to_rod);
towerOfHanoi(n-1, aux_rod, to_rod, from_rod);
}
}
public static void main(String args[])
{
int n = 4; //Disks
towerOfHanoi(n, 'A', 'C', 'B'); // A, B and C names of rods
}
}
0 Comments
Please Login to Comment Here