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