Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hparker/mazes
maze generation algorithms
https://github.com/hparker/mazes
Last synced: 25 days ago
JSON representation
maze generation algorithms
- Host: GitHub
- URL: https://github.com/hparker/mazes
- Owner: HParker
- Created: 2021-03-06T06:00:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-06T04:23:06.000Z (almost 4 years ago)
- Last Synced: 2024-12-11T13:47:20.187Z (about 1 month 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
![maze-generation](https://user-images.githubusercontent.com/4482399/111885297-2e469c80-8984-11eb-83ec-f781c5730e16.gif)
A collection of mazes and their algorithms implemented using C and SDL
## Generation algorithms
### [Binary Tree](b_tree.c)
![b_tree](https://user-images.githubusercontent.com/4482399/113658264-8c49d400-9654-11eb-95fd-e6c98b164e91.gif)### [Sidewinder](sidewinder.c)
![sidewinder](https://user-images.githubusercontent.com/4482399/113658279-91a71e80-9654-11eb-8bf4-02c3c77a02d2.gif)### [Hunt and Kill](hunt_and_kill.c)
![hunt_and_kill](https://user-images.githubusercontent.com/4482399/113658302-9ff53a80-9654-11eb-9c79-5bb7d3c07b1c.gif)### [Random Walk](random_walk.c)
![random_walk](https://user-images.githubusercontent.com/4482399/113658309-a5eb1b80-9654-11eb-849b-1cf8e5ca3263.gif)### [Wilsons](wilson.c)
![wilson](https://user-images.githubusercontent.com/4482399/113658399-d468f680-9654-11eb-842a-e9269990f024.gif)### [Backtrack](backtrack.c)
![backtrack](https://user-images.githubusercontent.com/4482399/113658425-e34fa900-9654-11eb-8a0c-c348fd88039c.gif)## Build & Run
[install sdl](https://wiki.libsdl.org/Installation)
`make & ./maze`