Tagged Questions
33
votes
13answers
4k views
Programming theory: Solve a maze
What are the possible ways to solve a maze?
Ive got two ideas, but I think they are not very elegant.
Base situation: We have a matrix, and the elements in this matrix are ordered in a way that it ...
5
votes
2answers
829 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 ...
4
votes
3answers
233 views
The King's Maze
I'm practicing up for a programming competition, and i'm going over some difficult problems that I wasn't able to answer in the past. One of them was the King's Maze. Essentially you are given an NxN ...
2
votes
1answer
318 views
Wall follow maze solver
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 ...
2
votes
3answers
1k views
solve a maze by using DFS, BFS, A*
I want to know the change in results when we use open maze or closed maze for the DFS, BFS, and A* search algorithms? Is there any big difference in the output like increase in number of expanded ...
1
vote
2answers
71 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
3answers
908 views
maze problem and Recursive backtracker algorithm
i want to implement the Recursive backtracker algorithm to solve maze problem, but i cant understand 2.3 Command ("remove the wall between the current cell and the chosen cell") would any help me ?
...
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 ...
1
vote
3answers
883 views
How to traverse a maze programatically when you've hit a dead end
Moving through the maze forward is pretty easy, but I can't seem to figure out how to back up through the maze to try a new route once you hit a dead end without going back too far?
0
votes
1answer
56 views
java: breadth first traversal with backtracking for maze
I am trying to implement a breadth first traversal for a maze. This is the code I have so far using a linked list but I am not sure if it is searching breadth first. Is this the proper way to do it? ...
0
votes
1answer
56 views
How to generate a Binary Tree from a Labyrinth?
A matrix of 150x150 size will describe our labyrinth, so for example if the matrix were only 10x10 we would have something like this:
1 1 1 1 1 1 1 1 1 1
1 0 0 0 0 0 0 1 0 0<-F
1 0 1 1 0 ...
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 ...