Tagged Questions

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
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 ...
0
votes
1answer
457 views

Data Structure to Represent a Maze

I'm writing a game of Dynamic maze in which after each time the structure of maze will change. like some doors will be closed and some doors will open. (Something like Triwazard in HP4). Can anyone ...