Tagged Questions

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
102 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 ...
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
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
62 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
150 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 ...
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
3answers
771 views

Maze Solving using graph

Hey i was in a local programming competition and they asked me this question which i could not do so please help me on this one. Write a program that loads from a file the size of a maze and then the ...