Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saiteja-talluri/tower-of-hanoi-solver
GUI for tower of hanoi with hint option giving the best move from any state of the game
https://github.com/saiteja-talluri/tower-of-hanoi-solver
bfs-algorithm hanoi-towers racket
Last synced: 16 days ago
JSON representation
GUI for tower of hanoi with hint option giving the best move from any state of the game
- Host: GitHub
- URL: https://github.com/saiteja-talluri/tower-of-hanoi-solver
- Owner: saiteja-talluri
- License: mit
- Created: 2019-08-08T14:35:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-08T14:39:07.000Z (over 5 years ago)
- Last Synced: 2024-11-18T05:39:40.442Z (3 months ago)
- Topics: bfs-algorithm, hanoi-towers, racket
- Language: Racket
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tower-of-Hanoi-Solver
Constructed a graph that represents the entire game states in which the nodes are possible states and an edge exists between two nodes if there is a valid move between the states using Graph library in Racket
Developed an intuitive GUI using 2htdp/image and 2htdp/universe packages to show the live preview
The solver is implemented to give the next possible best move from any state using Breadth First Search