Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
1
vote
2answers
72 views

Queues in Java - What's wrong with my implementation, and what's one I can use?

I am trying to make a breadth-first search to solve a square-shifting puzzle (the one where you move squares into an empty space until it's solved). My breadth-first algorithm uses a queue. ...
0
votes
2answers
42 views

Accessing values in a 2D array incorrectly

I have a 2D array such as: // construct initial **array int **arr; arr = new int* [SIZE]; for (int i = 0; i < SIZE; i++) { arr[i] = new int[SIZE]; ...
0
votes
2answers
297 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 ...
0
votes
0answers
96 views

How to prove Manhattan Distance is valid in the 8 puzzle?

As we all know, in the 8-puzzle problem, we would like to choose the Manhattan Distance as the heuristic function. However, how can we prove the Manhattan Distance is admissible? I think this problem ...
0
votes
1answer
2k views

Manhattan distance algorithm implementation in 8 puzzle

Could you please help me in implementing a Manhattan distance euristic algorithm in solving 8 puzzle or give a link where I can find a solution? Thanks in advance.
0
votes
1answer
1k views

Tackling the 8-puzzle via BFS

I've heard that the 8-puzzle problem can be tackled via BFS, but I don't understand how. I wanna know the intermediate steps that I need to get from a board like this: 3 1 2 6 4 5 0 7 8 to 1 2 3 ...