Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 728 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 728 Bytes

Maze Generator

A Javascript maze generator using depth-first search with a recursive backtracker (it just means it uses a stack!). Detailed info on the algorithm here.

Structure

The main classes are kept under the \src folder. To serve them in \assets\bundle.js, browserify has been used, so for editing remember to run browserify \src\main.js -o assets\bundle.js.

Todos

  • Adding maze resolution interactive game
  • Adding other maze generation algorithms

Author