8-puzzle-solver
8-puzzle-solver copied to clipboard
A web-app that can solve 8-puzzle and visualize the search tree
8-puzzle-solver
A web app that solves 8-puzzle game with various tree search techniques. It also visualizes the search tree and supports one-step iterations to explore and comprehend search algorithms. My project report can be found on here.
Avaliable on: https://deniz.co/8-puzzle-solver
Supported search algorithms:
- Breadth First
- Uniform Cost
- Depth First
- Iterative Deepening
- Greedy Best
- A*
Installation
- Fork it!
- Install dependencies:
npm install - Open src/index.html file:
open src/index.html
Build
- Build the project:
npm run build - The output will be saved to
index.htmlto root. Open it:open index.html
