https://github.com/hparker/mazes
maze generation algorithms
https://github.com/hparker/mazes
Last synced: 4 months ago
JSON representation
maze generation algorithms
- Host: GitHub
- URL: https://github.com/hparker/mazes
- Owner: HParker
- Created: 2021-03-06T06:00:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-06T04:23:06.000Z (over 4 years ago)
- Last Synced: 2025-02-05T12:46:18.921Z (5 months ago)
- Language: C
- Size: 35.2 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Mazes

A collection of mazes and their algorithms implemented using C and SDL
## Generation algorithms
### [Binary Tree](b_tree.c)
### [Sidewinder](sidewinder.c)
### [Hunt and Kill](hunt_and_kill.c)
### [Random Walk](random_walk.c)
### [Wilsons](wilson.c)
### [Backtrack](backtrack.c)
## Build & Run
[install sdl](https://wiki.libsdl.org/Installation)
`make & ./maze`