Write a javascript to solve the problem of the towers of


1879_toi.png

In order to attempt to move the disks from peg 1 to peg 3, develop an algorithm that will print the precise sequence of peg-to-peg disk transfers.

Solve the problem with recursion in mind, it immediately becomes tractable. Moving n disks can be viewed in terms of moving only n-1 disks as follows:

a) Move n -1 disks from peg 1 to peg 2, using peg 3 as a temporary holding area.

b) Move the last disk from peg 1 to peg 3.

c) Move n -1 disks from peg 2 to peg 3, using peg 1 as a temporary holding area.

The process ends when the last task involves moving n = 1 disk (i.e., the base case). This task is accomplished simply by moving the disk, without the need for a temporary holding area.

Write a javascript to solve the problem of the Towers of Hanoi. Allow the end user to enter the number of disks in a text field. Use a recursive tower function with four parameters:

a) The number of disks to be moved.

b) The peg on which the disks are initially threaded.

c) The peg to which the stack of disks is to be moved.

d) The peg to be used as a temporary holding area.

Program should display in a

1929643

Questions
Asked

3,689

Active Tutors

1443381

Questions
Answered

Start Excelling in your courses, Ask a tutor for help and get answers for your problems !!

ask Question