Tagged Questions
The maze tag has no wiki summary.
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
495 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
3answers
309 views
How could I stop from printing both sides of a wall in my ascii maze?
I've written some code that generates mazes for me. The maze consists of (n x n) cells, each cell has a boolean value to represent a wall (north, south, east west).
It is working fine, and I wrote ...
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
3answers
221 views
Confusing Java syntax
I'm trying to convert the following code (from Wikipedia) from Java to JavaScript:
/*
* 3 June 2003, [[:en:User:Cyp]]:
* Maze, generated by my algorithm
* 24 October 2006, [[:en:User:quin]]:
...
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
2answers
98 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 ...
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
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 ...
4
votes
1answer
566 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, ...
3
votes
9answers
3k views
Creating a Maze class in C++ using 16bit unsigned int array?
I'm attempting to make a data structure to represent a Maze in C++.
All the data I need to hold about the maze can be stored in 16 bit integers using bitwise operations (to represent each cell of the ...
2
votes
1answer
74 views
Maze Algorithm KINDA works. Some mazes, not ALL help
I am using a maze algorithm that works some of the time, but not all of the time. It uses recursion but I cannot figure out why it doesnt all the time.
public boolean findPath(int x, int y) {
...
2
votes
1answer
69 views
Need suggestions for a very basic maze like algorithm
I am after some help and suggestions for how I would dynamically create the walls for a level, similar to the ones used in the retro game Tank Battalion
I am creating a game for Android most likely ...
2
votes
1answer
439 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
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
1answer
244 views
Making a graph of a maze in python
Hey, im trying to make a graph using Dictionaries in python. Im using a txt containing a maze (b for walls a for paths) and im trying to make a dictonaire that lists all the possible moves to take in ...
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
1answer
716 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 ...
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
2answers
581 views
Rendering a random generated maze in WinForms.NET
I'm trying to create a maze-generator, and for this I have implemented the Randomized Prim's Algorithm in C#.
However, the result of the generation is invalid. I can't figure out if it's my ...
2
votes
4answers
793 views
Reading in an ascii 'maze' into a 2d array
I'm writing code to read in a 7x15 block of text in a file that will represent a 'maze'.
#include <iostream>
#include <fstream>
#include <string>
#include "board.h"
int main()
{
...
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
1answer
79 views
Rectangles overlapping while attempting to enlarge the GUI of a maze
My adventure with the maze and GUI continues, and at the moment I can see any graph G=(V,E)
where the Vertices are rooms, and the Edges are connectors (Doors or Walls), but the dimensions of the ...
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
0answers
65 views
Randomly Generate Directed Graph on a grid
I am trying to randomly generate a directed graph for the purpose of making a puzzle game similar to the ice sliding puzzles from pokemon.
This is essentially what I want to be able to randomly ...
1
vote
1answer
60 views
Recursive backtracker maze generation algorithm stack loop
I am having a problem with an algorithm I wrote for creating a ascii maze. The code is using a recursive back tracker, and the pseudo code essentially is:
1. Make the initial cell the current cell ...
1
vote
2answers
104 views
Maze Generation with Ruby
I have been working on polishing my Ruby skills lately and came across a nice snazzy presentation on maze generation.
Presentation by Jamis Buck
I would want to implement a couple of algorithms and ...
1
vote
2answers
149 views
Maze representation help
I want to create maze using graph but I don't know where to start. I just know ways to represent a maze that use array of array or graph.
In Array of Array representation, is recursive backtracking ...
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
68 views
Java: Randomizing the Order of Method Recursive Calls
For DFS maze generation in Java I wanna randomize the order in which the recursive calls of a DFS are made:
for (int rows=i; rows<M; rows++)
for (int cols=j; cols<N; cols++){
...
1
vote
1answer
256 views
Backtracking maze algorithm doesn't seem to be going all the way back
Basically, I have this: First, a bunch of code generates a maze that is non-traversable. It randomly sets walls in certain spaces of a 2D array based on a few parameters. Then I have a backtracking ...
1
vote
2answers
234 views
Maze not being random
Hey there, I am building a program that generates a maze so I can later translate the path to my graphical part. I have most of it working, however, every time you can just take the east and south ...
1
vote
1answer
202 views
List.append() changing all elements to the appended item
I seem to have a problem with my maze generating program made in Python. I'm trying to randomly create a path that branches out at select points, with the points getting stored as it goes along. When ...
1
vote
1answer
131 views
Bitwise operations - what the heck is going on?
I've got the following JavaScript script for generating a 2D maze:
/*
* 3 June 2003, [[:en:User:Cyp]]:
* Maze, generated by my algorithm
* 24 October 2006, [[:en:User:quin]]:
* Source ...
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
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
900 views
Simple iPhone accelerometer ball-maze game
I want to make a simple 2D game where the user has to navigate a ball through a maze (using the accelerometer of course). I used a simple view to make use of the accelerometer and move a ball on the ...
1
vote
2answers
843 views
Creating a Maze using Java
Im using Java to create a maze of specified "rows" and "columns" over each other to look like a grid.
I plan to use a depth-first recursive method to "open the doors" between the rooms
(the box ...
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
5answers
2k views
Problem with Maze Algorithm
I am having a problem with a algorithm that is designed to solve mazes.
I used an algorithm from here.http://www.cs.bu.edu/teaching/alg/maze/
FIND-PATH(x, y)
if (x,y outside maze) return false
if ...
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
34 views
Iterator for Set using HashMap won't produce the value / key?
Given the following code :
public class Game {
private Map<String,Coordinate> m_myHashMap;
... // more code
}
public Game(Display display,int level)
{
this.m_myHashMap = new ...
0
votes
0answers
39 views
Maze drawing using Java GUI - rectangles are printed one over the other
Given the following code :
private void drawMaze(PaintEvent e)
{
Graph maze = new Graph();
maze.generateMaze(25);
int i = 0;
int level = 25;
...
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? ...