Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.83 KB

README.md

File metadata and controls

42 lines (30 loc) · 1.83 KB

Maze Generator and Pathfinding Visualiser

Demo: https://hugh5.github.io/pathfinding-visualiser/

Maze Generator

Algorithms Implemented:

  • Recursive Backtracking
  • Recursive Division
  • Prim's Algorithm
  • Kruskal's Algorithm
  • Random
    • The walls of the maze are removed at random
  • Cyclic Recursive Backtracking
    • A variant of the recursive backtracking algorithm that allows for cycles in the maze (and thus multiple paths) by randomly choosing walls to remove when backtracking.
  • Simple Wall
    • A blank maze with a single wall in the middle
  • None
    • A blank maze with no walls

Search Algorithms

Algorithms Implemented:

References

License

MIT © Hugh5