-
Notifications
You must be signed in to change notification settings - Fork 242
/
Copy pathtower_of_hanoi.c
48 lines (39 loc) · 1012 Bytes
/
tower_of_hanoi.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// WAP to implement tower of hanoi
#include <stdio.h>
int towers(int n, char beg, char end, char aux)
{
if (n == 1)
{
printf("\n Move disk %d from the peg %c to the peg %c", n, beg, end);
return 0;
}
else
{
towers(n - 1, beg, aux, end);
printf("\n Move disk %d from the peg %c to the peg %c", n, beg, end);
towers(n - 1, aux, end, beg);
}
}
int main()
{
int n;
printf("Enter the number of disks to be operated\n");
scanf("%d", &n);
towers(n, 'A', 'B', 'C');
return 0;
}
/*
A beginning peg/from peg
B end peg/to peg
C auxilliary peg
OUTPUT:
Enter the number of disks to be operated
3
Move disk 1 from the peg A to the peg B
Move disk 2 from the peg A to the peg C
Move disk 1 from the peg B to the peg C
Move disk 3 from the peg A to the peg B
Move disk 1 from the peg C to the peg A
Move disk 2 from the peg C to the peg B
Move disk 1 from the peg A to the peg B
*/