cs302 data structures using c
play

CS302 - Data Structures using C++ Topic: The Towers of Hanoi - PowerPoint PPT Presentation

CS302 - Data Structures using C++ Topic: The Towers of Hanoi Kostas Alexis The Towers of Hanoi Introduction to the problem The Towers of Hanoi is a mathematical puzzle where one has three pegs and n disks and the goal is to move


  1. CS302 - Data Structures using C++ Topic: The Towers of Hanoi Kostas Alexis

  2. The Towers of Hanoi • Introduction to the problem • The “Towers of Hanoi” is a mathematical puzzle where one has three pegs and n disks and the goal is to move the entire stack to another rod, obeying a set of rules. • The Rules of the “Towers of Hanoi” • Only one disk may be moved at a time • Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack: a disk can only be moved if it is the uppermost disk on a stack. • No disk may be placed on top of a smaller disk.

  3. The Towers of Hanoi • Problem Statement • Beginning with n disks on pole A and zero disks on poles B and C, solve towers(n,A,B,C)

  4. The Towers of Hanoi • Problem Statement • Beginning with n disks on pole A and zero disks on poles B and C, solve towers(n,A,B,C) • Solution • With all disks on A, solve towers(n-1,A,C,B) • With the largest disk on pole A and all the others on pole C, solve towers(n-1,A,B,C) • With the largest disk on pole B and all the other disks on pole C, solve towers(n- 1,C,B,A)

  5. The Towers of Hanoi

  6. The Towers of Hanoi

  7. The Towers of Hanoi

  8. The Towers of Hanoi

  9. The Towers of Hanoi

  10. The Towers of Hanoi

  11. The Towers of Hanoi

  12. The Towers of Hanoi

  13. The Towers of Hanoi

  14. The Towers of Hanoi n+1

  15. The Towers of Hanoi n+1

  16. The Towers of Hanoi n+1

  17. The Towers of Hanoi n+1

  18. The Towers of Hanoi n+1

  19. The Towers of Hanoi #include <iostream> using namespace std; void solveTowers( int n, char from_rod, char to_rod, char aux_rod) { if (n == 1) { // Move from SRC to DST cout << "Move disk 1 from rod " << from_rod << " to rod " << to_rod << endl; return ; } solveTowers(n-1, from_rod, aux_rod, to_rod); // Move from SRC: FROM_ROD to DST: TO_ROD with SPARE: AUX_ROD cout << "Move disk " << n << " from rod " << from_rod << " to rod " << to_rod << endl; // Move from SRC: AUX_ROD to DST: TO_ROD with SPARE: FROM_ROD solveTowers(n-1, aux_rod, to_rod, from_rod); } int main() { int n = 3; // Number of disks solveTowers(n, 'A', 'C', 'B'); // A, B and C are names of rods return 0; }

  20. The Towers of Hanoi #include <iostream> using namespace std; void solveTowers( int n, char from_rod, char to_rod, char aux_rod) { if (n == 1) { // Move from SRC to DST cout << "Move disk 1 from rod " << from_rod << " to rod " << to_rod << endl; return ; } solveTowers(n-1, from_rod, aux_rod, to_rod); // Move from SRC: FROM_ROD to DST: TO_ROD with SPARE: AUX_ROD cout << "Move disk " << n << " from rod " << from_rod << " to rod " << to_rod << endl; // Move from SRC: AUX_ROD to DST: TO_ROD with SPARE: FROM_ROD solveTowers(n-1, aux_rod, to_rod, from_rod); } int main() { int n = 3; // Number of disks solveTowers(n, 'A', 'C', 'B'); // A, B and C are names of rods return 0; }

  21. The Towers of Hanoi #include <iostream> Move disk 1 from rod A to rod C using namespace std; Move disk 2 from rod A to rod B void solveTowers( int n, char from_rod, char to_rod, char aux_rod) Move disk 1 from rod C to rod B { Move disk 3 from rod A to rod C if (n == 1) { Move disk 1 from rod B to rod A // Move from SRC to DST Move disk 2 from rod B to rod C cout << "Move disk 1 from rod " << from_rod << " to rod " << Move disk 1 from rod A to rod C to_rod << endl; return ; } solveTowers(n-1, from_rod, aux_rod, to_rod); // Move from SRC: FROM_ROD to DST: TO_ROD with SPARE: AUX_ROD cout << "Move disk " << n << " from rod " << from_rod << " to rod " << to_rod << endl; // Move from SRC: AUX_ROD to DST: TO_ROD with SPARE: FROM_ROD solveTowers(n-1, aux_rod, to_rod, from_rod); } int main() { int n = 3; // Number of disks solveTowers(n, 'A', 'C', 'B'); // A, B and C are names of rods return 0; }

  22. The Towers of Hanoi • Order of recursive calls that results from solveTowers(3,A,B,C)

  23. Thank you

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend