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 ...
25
votes
4answers
498 views

Algorithm for maze generation with no dead ends?

I'm looking for a maze generation algorithm that can generate mazes with no dead ends but only a start and end. Like this: . Where do I find or go about constructing such a maze generation ...
15
votes
4answers
3k views

What's a good algorithm to generate a maze?

Say you want a simple maze on an N by M grid, with one path through, and a good number of dead ends, but that looks "right" (i.e. like someone made it by hand without too many little tiny dead ends ...
9
votes
5answers
2k views

Algorithm to generate a segment maze

I want to generate a maze that looks like this: That is, it consists of paths in one direction that are then connected. I have looked for an algorithm to generate mazes like this without success. ...
6
votes
4answers
4k views

Pacman maze in Java

So I'm building the pacman game in Java to teach myself game programming. I have the basic game window with the pacman sprite and the ghost sprites drawn, the pacman moves with the arrow keys, ...
5
votes
1answer
83 views

Algorithm(s) for finding moving entities in a maze

A have a maze and character that's controlled by the player and a drone who has to find him (by itself). Does anyone know an (efficient) AI algorithm for doing something like this? P.S. I know there ...
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
5answers
1k views

Optimal multiplayer maze generation algorithm

I'm working on a simple multiplayer game in which 2-4 players are placed at separate entrypoints in a maze and need to reach a goal point. Generating a maze in general is very easy, but in this case ...
4
votes
2answers
112 views

Algorithms for 3D Mazes

Are there algorithms to produce 3 dimensional mazes? Essentially the same as a 2D maze but the Z depth axis can be traversed? The idea is still the same though, to get from Start to End. Could ...
4
votes
1answer
113 views

Difficulties in converting an recursive algorithm into an iterative one

I've been trying to implement a recursive backtracking maze generation algorithm in javascript. These were done after reading a great series of posts on the topic here While the recursive version of ...
4
votes
1answer
567 views

Making a 3D maze in Java

Goal I am making a program which generates a 3D maze and am having a bit of trouble with the creation algorithm. For ease of interaction, it will be a rectangular prism with one entrance and one ...
3
votes
3answers
279 views

Count the number of “holes” in a bitmap

Consider a MxN bitmap where the cells are 0 or 1. '1' means filled and '0' means empty. Find the number of 'holes' in the bitmap, where a hole is a contiguous region of empty cells. For example, ...
2
votes
1answer
440 views

Depth-first-search maze generation algorithm with blocks instead of walls

I am trying to implement the depth first search algorithm into my game. I have been studying this web page: http://www.mazeworks.com/mazegen/mazetut/index.htm , only to find that I wouldn't be able to ...
2
votes
1answer
317 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
225 views

Dynamic maze mutation

I have an idea of creating yet another maze game. However, there is a key difference: maze changes on-the-fly during the game. When I think of the problem the following restrictions come into my mind: ...
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 ...
2
votes
3answers
3k views

How can I create cells or grids in C++ for a randomized maze?

I'm trying to create a randomized maze in C++, but I can't start because I don't know how to create grids or cells. How could I create it? And I also want to create it using ASCII characters. how can ...
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
180 views

What is the algorithm for generating the maze in the game Netwalk?

What is the algorithm for generating the maze in the game Netwalk?
1
vote
3answers
905 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 ? ...
0
votes
2answers
89 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
186 views

Help with solving D&D maze using Java

I been reading some of the other questions that have been posted on stackoverflow and I am a little overwhelmed by the number of search algorithms there are. I'm not looking for code and more of a ...
0
votes
3answers
642 views

Problem with maze solving backtracking algorithm with setting visited rooms

i seek if somebody could help me out with my room searching algorithm I'm trying to implement a backtracking algorhitm for maze solving. I'm stuck in the place where i should memorize the rooms which ...