Tagged Questions
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
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
...