Tagged Questions
8
votes
6answers
5k views
What can be the efficient approach to solve the 8 puzzle problem?
The 8-puzzle is a square board with 9 positions, filled by 8 numbered tiles and one gap. At any point, a tile adjacent to the gap can be moved into the gap, creating a new gap position. In other words ...
0
votes
2answers
298 views
n-puzzle solving with A* algorithm using C++
I am implementing A* algorithm in C++ to solve the n-puzzle problem.
I tried to implement the pseudocode in this link.
Total cost(F=H+G) calculation is "cost depends on the number of misplaced tiles ...