Skip to content

Commit

Permalink
Merge pull request AnujitSingh#7 from imabhishek02/main
Browse files Browse the repository at this point in the history
towerofhanoi
  • Loading branch information
AnujitSingh authored Oct 20, 2022
2 parents f21f511 + ba93b4e commit e9276ea
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Tower_of_hanoi.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// C++ recursive function to
// solve tower of hanoi puzzle
#include <bits/stdc++.h>
using namespace std;

void towerOfHanoi(int n, char from_rod, char to_rod,
char aux_rod)
{
if (n == 0) {
return;
}
towerOfHanoi(n - 1, from_rod, aux_rod, to_rod);
cout << "Move disk " << n << " from rod " << from_rod
<< " to rod " << to_rod << endl;
towerOfHanoi(n - 1, aux_rod, to_rod, from_rod);
}

// Driver code
int main()
{
int N = 3;

// A, B and C are names of rods
towerOfHanoi(N, 'A', 'C', 'B');
return 0;
}

// This is code is contributed by abhishek rohit

0 comments on commit e9276ea

Please sign in to comment.