I'm having some trouble with my maze solving algorithm. I'm trying to implement the left hand rule.

public Direction move(View v) {
    if (!wallExistsToLeft(v)) {
        turnLeft();
    } else if (v.mayMove(direction)) {
        return direction;
    } else if (!wallExistsToRight(v)){
        turnRight();
    } else {
        turnAround();
    }
    return direction;
}

direction is always set to the current direction the maze solver is facing.

turnX changes the direction based on the direction you're currently facing

The move function returns a direction in which the maze solver moves 1 space in that direction.

Can anyone point me in the right direction? I'm sure there is some simple recursive way that this can be implemented but I can't seem to work it out.

Currently I'm failing on these two tests: http://i52.tinypic.com/2m6qqgm.jpg

Any help would be greatly appreciated.

Thanks

link|improve this question

44% accept rate
feedback

1 Answer

From your pictures, it looks like you always turn right.

Which, from your code, would indicate that wallExistsToLeft(v) always returns true, and v.mayMove(direction) always returns false.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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