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.

link|improve this question

3  
Is this homework? – Oren A Oct 20 '10 at 17:55
Just want to write a puzzle solver, if it can be categorized as homework, then so :) – Azat Oct 20 '10 at 17:58
1  
I didn't want the efficient approach, I wanted the implementation example of Manhattan distance algorithm. – Azat Oct 20 '10 at 19:29
feedback

1 Answer

up vote 2 down vote accepted

Manhatten distance:
d=Abs(x1-x2)+Abs(y1-y2)

If you sum this over all pieces and their respective target positions you get a heuristic for the 8 puzzle.
The nice thing about this heuristic is that it never overestimates the distance between two states, and thus makes A* emmit the optimal(i.e. fewest moves) solution.

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):

class Piece
{
    public int X;
    public int Y;
    public readonly int Number;

    int TargetX{get{return (Number-1)%3;}}
    int TargetY{get{return (Number-1)/3;}}

    int CalculateDistanceFromGoal()
    {
         int dx=X-TargetX;
         int dy=Y-TargetY;
         return Math.Abs(dx)+Math.Abs(dy);
    }

    public Piece(int number,int x,int y)
    {
        Number=number;
        X=x;
        Y=y;
    }
}


}

int Heuristic(Piece[] pieces)
{
    int result=0;
    foreach(Piece piece in pieces)
    {
        result+=piece.CalculateDistanceFromGoal();
    }
    return result;
}
link|improve this answer
I would be very appreciated if you could give a real implementation in C# code, because I "ate a fish" on this – Azat Oct 20 '10 at 18:00
Do I need to find the position of the goal tile through loop? – Azat Oct 20 '10 at 18:02
you can calculate the x positon of the goal as (piecenumber-1)%3 and the y position as (piecenumber-1)/3 – CodeInChaos Oct 20 '10 at 18:03
Thank you very much! :) – Azat Oct 20 '10 at 18:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.