https://github.com/sethcg/maze-generator-solver
Generate a maze using the Wilson's Algorithm, and then use the A* Algorithm to solve the maze.
https://github.com/sethcg/maze-generator-solver
algorithms astar-pathfinding c-language cmake maze-generator-solver wilsons-algorithm
Last synced: 13 days ago
JSON representation
Generate a maze using the Wilson's Algorithm, and then use the A* Algorithm to solve the maze.
- Host: GitHub
- URL: https://github.com/sethcg/maze-generator-solver
- Owner: sethcg
- Created: 2025-08-27T12:09:57.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-10-18T19:02:53.000Z (9 months ago)
- Last Synced: 2025-11-05T10:12:19.739Z (8 months ago)
- Topics: algorithms, astar-pathfinding, c-language, cmake, maze-generator-solver, wilsons-algorithm
- Language: C
- Homepage:
- Size: 85 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Maze Generator & Solver
### Description:
-
This is a C/C++ application that implements the Wilson's Algorithm to generate a maze,
and the A* Algorithm to solve the maze.
There is also an optional gradient from red to green to visualize which cells were visited during the process of solving.
### Preview:
Show
### Tooling:
- [x] C/C++ Language
- [x] SDL3
- [x] ImGUI
- [x] Vcpkg
- [x] CMake
---
### Developer Notes:
```bash
# CONFIGURE
cmake -S. -Bbuild --preset windows
# BUILD
cmake --build build
```