For algorithm or programming questions about sliding puzzles (such as the 8-puzzle or 15-puzzle), where the player is challenged to slide randomized, numbered tiles along certain routes on a board in order to arrive at a certain end configuration.
I'm trying to implement a program to solve the n-puzzle problem. I have written a simple implementation in Java that …
java search artificial-intelligence graph-algorithm sliding-tile-puzzleI have read many pseudo code for the A* algorithm, but neither of them actually explain how to output the …
java sliding-tile-puzzleI'm trying to code a 8-puzzle game solver in C++, but I'm having a lot of problems while doing it. …
c++ algorithm distance puzzle sliding-tile-puzzle