Package mazealgo.model.algorithms.mazeGenerators


package mazealgo.model.algorithms.mazeGenerators
  • Class
    Description
    Base class for maze generators.
    Generates an empty maze (no walls).
    A maze generation algorithm.
    A 2D maze: an int grid where 1 is a wall and 0 is a passable cell, with a start position and a goal position.
    Iterative randomized DFS (recursive backtracker).
    A row/column position inside a Maze.
    Scatters walls randomly across the grid, then carves a guaranteed path from start to goal so the maze always has a solution (and usually many).