A simple algorithm for maze generation is to start, apart from entry and exit points, with all walls present and randoml
Posted: Sat May 14, 2022 4:40 pm
A simple algorithm for maze generation is to start, apart from
entry and exit points, with all walls present
and randomly knock down walls until the entry and exit points are
connected. Write a C++ program to
implement this algorithm for an arbitrary sized maze – test with a
50 by 88 rectangular maze.
entry and exit points, with all walls present
and randomly knock down walls until the entry and exit points are
connected. Write a C++ program to
implement this algorithm for an arbitrary sized maze – test with a
50 by 88 rectangular maze.