Επιστροφή στα Έργα
Maze Generator library

Maze Generator library

Konstantinos Egkarchos / November 24, 2022

I wanted to explore ways for maze generation to teach myself about algorithms and data structures. Surprisingly, the scope of this project got bigger than I anticipated since after implementing maze generation algorithms I decided to go a step further and explore benchmark and testing solutions for .NET.

Kruskal with passing bias Kruskal with passing bias Kruskal with passing bias

I've implemented the following algorithms:

  • Kruskal
  • Recursive Backtracker
  • Hunt and Kill

and a Breadth First Search solver.

The library is available on GitHub.