Tagged Questions

5
votes
2answers
827 views

Maze solving optimal no left turn algorithm

I am working on a project where I need to solve a maze using the minimum number of right turns and no left turns. The distance travelled is irrelevant as long as right turns are minimized. We are ...
1
vote
2answers
66 views

Generate a maze in Java , not as a grid (i.e. Matrix NxN) , but as a Graph

I need to generate a program that consists of building a maze , where the game involves players up-to 60-70. The thing is , I don't want to use a grid , because I think it would waste too much memory ...
1
vote
1answer
3k views

Maze recursive solving and randomly creating a maze (JAVA)

first assignment was a find the solution of a 12*12 maze. i am supposed to use a recursive method to solve them. secondly, i have to make a method to create a randomly generated maze with same ...
0
votes
2answers
2k views

How to find all available maze paths?

I am trying to write a program that is given a maze and tries to find the way out. M is the entrance, E is the exit, 1s are walls, and 0s are pathways. It is supposed to find each path and put P in ...