Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
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 ...
5
votes
6answers
2k views

Code Golf: Solve a Maze

Here's an interesting problem to solve in minimal amounts of code. I expect the recursive solutions will be most popular. We have a maze that's defined as a map of characters, where '=' is a wall, a ...
4
votes
3answers
231 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
316 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
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
3answers
902 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
2answers
631 views

solving a maze using the left hand rule

i am trying to solve the maze using the left hand exit rule using the the below sudo code i have got it working mostly but i am having issues with making it choose a new direction when it hits a dead ...
1
vote
1answer
435 views

Maze Navigation in Player Stage with Roomba

Here is my code: /* Scott Landau Robot Lab Assignment 1 */ // Standard Java Libs import java.io.*; // Player/Stage Libs import javaclient2.*; import javaclient2.structures.*; import ...
1
vote
4answers
568 views

Algorithm to get through a maze

We are currently programming a game (its a pretty unknown language: modula 2), And the problem we encountered is the following: we have a maze (not a perfect maze) in a 17 x 12 grid. The computer has ...
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
882 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
65 views

Ways optimize my recursive maze solver?

I have developed the following C program to find all possible paths out off a maze. And it has to go through each room in the maze. That is why the '54' is hard coded at the minute because for the ...
0
votes
1answer
48 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
54 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 ...