maze gen v2 and solve approved with README setup for everything

This commit is contained in:
Xevion
2019-10-16 12:42:30 -05:00
parent 9ba97a5b51
commit c330c129bd
5 changed files with 447 additions and 0 deletions

21
mazes/README.md Normal file
View File

@@ -0,0 +1,21 @@
# mazes
## About
Projects that generate mazes using various algorithms. Developed primarily in 2018-2019. All of these are generating simple square mazes, just using different algorithms and occaisionally a little twist.
## Sketches
- **MazeGenV2** Second maze generation attempt. First *working* maze implementation. Recursive Backtracker algorithm.
- **MazeGenSolve** - Maze gen with a completed path shown after. Recursive Backtracker algorithm for Generation, A* algorithm for pathfinding (very similar in theory).
- **MazeGenBinaryTree** - Binary Tree algorithm
- **MazeGenGrowingTree** - Growing Tree algorithm
- **MazeGenKruskalTree** - Kruskal Tree algorithm
- **MazeGenSidewinder** - Sidewinder algorithm. A little bit buggy at the end, but properly implemented none the less.
- **MazeClustersCreator** - Not so much a maze as a interesting side-project when developing my maze generators. Somewhat buggy.