mirror of
https://github.com/TheAlgorithms/C
synced 2024-11-25 06:49:36 +03:00
Merge pull request #35 from shashikedissanayake/master
Added a new file
This commit is contained in:
commit
ffd96f046b
29
TowerOfHanoi.c
Normal file
29
TowerOfHanoi.c
Normal file
@ -0,0 +1,29 @@
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
// Function for Tower of Hanoi algorithm
|
||||
void hanoi(int noOfDisks,char where,char to,char extra){
|
||||
if(noOfDisks == 0 )
|
||||
{
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
hanoi(noOfDisks-1, where, extra , to);
|
||||
printf("Move disk : %d from %c to %c\n",noOfDisks,where,to);
|
||||
hanoi(noOfDisks-1,extra,to,where);
|
||||
}
|
||||
}
|
||||
int main(void){
|
||||
int noOfDisks;
|
||||
|
||||
//Asks the number of disks in the tower
|
||||
printf("Number of disks: \n");
|
||||
scanf("%d", &noOfDisks);
|
||||
|
||||
hanoi(noOfDisks,'A','B','C');
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user