Tagged Questions
5
votes
2answers
828 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
2answers
106 views
Maze solver recording backtracked paths
I've gotten my maze solver program to work but it seems to be including back tracked spaces (places it went to and hit a wall so it had to turn around) in the final solution path that it outputs. Here ...
2
votes
1answer
717 views
shortest path through a maze
I am working on a project that i must traverse a maze using the left-hand rule and based upon the intersections the program comes upon i need to create a node to connect to a graph that I will then ...
1
vote
2answers
68 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
102 views
How do I have a picture act as a game character on top of a canvas?
I have a maze game in JAVA I'm doing for a class, the maze is made on a canvas in an applet, I wanted to have another picture provided to me (of a statue like thing) act as a game character and be ...
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
90 views
Recording a maze path solution with a stack
I am to generate a solution to a maze using a linked list implementation of a stack in some way. The maze is read in from a .txt file and consists of 0's for open spaces and 1's for walls.
<- ...
0
votes
2answers
134 views
Java: Trouble randomizing a DFS run to build a maze
I'm having trouble randomizing the visit from a node to its neighbors, rarely is the whole graph (a MxN array, in this test 4x4) visited, I don't get what I'm doing wrong here.
import ...
0
votes
1answer
230 views
Java Dynamic Matrix
OK so the title tells little, but I am looking to make an editor of sorts for mazes. I had an assignment to make a maze solver. I did this by reading a file. The first line has the row and column ...
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 ...