Question
Write a program to solve the Towers of Hanoi problem for a tower of size n, using both recursion and iteration. Time each method separately.
Write a program to solve the Towers of Hanoi problem for a tower of size n, using both recursion and iteration. Time each method separately. Be very careful to time only the actual work and avoid superfluous module calls and initialization, etc. Compare and contrast your two versions of the problem.
Your analysis must contain a table of the times obtained for each run.
For a tower of a particular size, your output should consist of a list of moves that must be made as well as the times obtained. Disk 1 is always the top disk. Print your output to a file, not the screen.
E.g. for a tower of size two
Move disk 1 from tower A to tower C
Move disk 2 from tower A to tower B
Move disk 1 from tower C to tower B
Run each version for the values n=1,2,3...50 or until you time out.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Here is a sample Java program that solves the Towers of Hanoi problem for a tower of size ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started