Chapter 11: Problem 17
Implement an iterator that produces the moves for the Towers of Hanoi puzzle described in Worked Example 11.2. Provide methods hasMorexoves and nexthove. The nextNove method should yield a string describing the next move. For example, the following code prints all moves needed to move five disks from peg 1 to peg 3 : nover = DiskNover \((5,1,3)\) while mover.hasMoreMoves \(\mathrm{O}\) : print (nover. nextMove(O) Hint: A disk mover that moves a single disk from one peg to another simply has a nextMove method that returns a string Move disk from peg sotree to target A disk mover with more than one disk to move must work harder. It needs another Disklover to help it move the first \(d-1\) disks. The nextrove asks that disk mover for its next move until it is done. Then the nextmove method issues a command to move the \(d\) th disk. Finally, it constructs another disk mover that generates the remaining moves. It helps to keep track of the state of the disk mover: \- BEFORE LARCEST: A helper mover moves the smaller pile to the other peg. \- LARCEST: Move the largest disk from the source to the destination. \- Arter LARCEST: The helper mover moves the smaller pile from the other peg to the target. \- DONE: All moves are done.
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.