how to tower of hanoi, How should the puzzle of the Tower of Hanoi game be solved?
How to Solve the Tower of Hanoi If there is only one plate, move the plate directly from the starting position to the target position;If there are n (n>1) plates, first move n-1 plates from the starting position through the target position to the intermediate position;
Next, move the nth plate from the starting position to the target position;
Finally, move n-1 plates from the transfer position through the starting position to the target position;
Pages:
[1]