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.
feedback
|
|
Manhatten distance: If you sum this over all pieces and their respective target positions you get a heuristic for the 8 puzzle. This heuristic is easily incrementally updatable since you just need just need to subtract the piece heuristic for the old position of the moved piece, and add it for the new position. Or even just check if it got closer, then subtract 1, and if it moved away add 1. Example code(violates a few conventions like no public fields):
| |||||||||
feedback
|