Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 315 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 315 Bytes

8-puzzle-solver

Solver for the 8-puzzle problem using the following algorithms: BestFS (using Manhattan's distance as a heuristic function) , DFS and BFS.

C++ code contents :

  • A State Class which represents any state of the 8-puzzle.
  • Main Class which has the implemented algorithms and runs with an example.