Click here to Skip to main content
15,868,016 members
Articles / Programming Languages / C#

Towers of Hanoi Puzzle Simulation

Rate me:
Please Sign up or sign in to vote.
2.59/5 (14 votes)
11 Jul 2006CPOL2 min read 68.4K   1.6K   18   4
The article describes a recursive solution for the famous puzzle of the towers of Hanoi
Sample Image - Towers_of_Hanoi.jpg

Introduction

The Tower of Hanoi or Towers of Hanoi is a mathematical game or puzzle. It consists of three stands, and a number of plates of different sizes which can be put over each other on any stand.

The puzzle starts with the plates stacked in order of size on one stand we call source, smallest at the top, making a pyramidshape.

The object of the game is to move the entire stack to another stand (destination), obeying the following rules:

  • Only one disc may be moved at a time.
  • No disc may be placed on top of a smaller disc.

Solution

Recursive Algorithm

  • Label the stands Src, Intr, Dest.
  • Let n be the total number of discs.
  • Number the discs from 1 (smallest, topmost) to n (largest, bottommost).

To move n discs from stand Src to stand Dest:

  1. Move n-1 plates from Src to Intr. This leaves plate #n alone on plate Src.
  2. Move plate #n from Src to Dest.
  3. Move n-1 plates from Intr to Dest so they sit on plate #n.

The above is a recursive algorithm: to carry out steps 1 and 3, apply the same algorithm again for n-1. The entire procedure is a finite number of steps, since at some point the algorithm will be required for n = 1. This step, moving a single plate from stand Src to stand Dest, is trivial.

The Tower of Hanoi is a problem often used to teach beginning programming, in particular as an example of a simple recursive algorithm. It is also an example of an exponential time algorithm — for all but the smallest number of discs, it will take an impractically huge amount of time, even on the fastest computers in the world. There is no way to improve on this, because the minimum number of moves required to solve the puzzle is exponential in the number of plates, which is 2n - 1, calculated by using recurrence relations, where n is the number of plates.

Code

SolveTowers()

C#
// code for the recursive method
// count are number of plates,
// source stand, destination stand and intermediate stand
private void SolveTowers(int count, int source, int dest, int inter)
{
   if (count == 1)
   {
      MoveFromTo(source, dest);//To Draw the action performed
      TotalMoves++;            //keep track of number of moves
   }
   else
   {
      //1- Move n-1 from source to intermediate stand using destination as a
      //spare
      solveTowers(count - 1, source, inter, dest);

      //2-Move plate #n from Src to Dest 
      solveTowers(1, source, dest, inter);

      //3-Move n-1 plates from intermediate to dest so they sit on plate #n 
      solveTowers(count - 1, inter, dest, source);
   }
}

Reference

History

  • 12th July, 2006: Initial post 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Egypt Egypt

Amr is an iOS developer living in Cairo/Egypt.

Works now as Lead Software Engineer at ITWorx.

Main interests : iPhone/iPad/Mac app development.

Others :
Windows,GDI+,SqlServer, ASP.Net,Custom controls and others.

Academics:
BSc Computer and Information Sciences June 2006.

Certifications:
MCSD C#.Net
MCTS:SQL Server 2005

Blog: here

Comments and Discussions

 
QuestionHave a look Pin
Atalia Beukes4-Jun-12 23:04
Atalia Beukes4-Jun-12 23:04 
Generalthanks Pin
Albertus Vendy Adhitya22-Oct-09 19:48
Albertus Vendy Adhitya22-Oct-09 19:48 
thank you for everything.
I hope it can be help me to solve my homework.. Big Grin | :-D
Generalcan't find alnk.dll Pin
behnam_iut27-Apr-07 23:41
behnam_iut27-Apr-07 23:41 
AnswerRe: can't find alnk.dll Pin
Amr Elsehemy ®27-Apr-07 23:45
Amr Elsehemy ®27-Apr-07 23:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.