Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 298 Bytes

search.md

File metadata and controls

9 lines (7 loc) · 298 Bytes

Create the program to solve 8-puzzle problem for the given input configuration.

  • Create search tree.
  • Solve by
    • BFS
    • DFS
    • DFS limited-depth

Ouput the final path to the solution with the configurations. Also output, how many intermediate nodes were explored before finding the Goal state.