https://github.com/harryfoster1812/maze-solver
https://github.com/harryfoster1812/maze-solver
astar-algorithm astar-pathfinding maze-game maze-solver wpf wpf-application wpf-ui
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/harryfoster1812/maze-solver
- Owner: HarryFoster1812
- License: gpl-3.0
- Created: 2022-11-12T21:36:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-12T21:52:05.000Z (over 3 years ago)
- Last Synced: 2025-03-29T05:39:28.735Z (over 1 year ago)
- Topics: astar-algorithm, astar-pathfinding, maze-game, maze-solver, wpf, wpf-application, wpf-ui
- Language: C#
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Maze-solver
A simple maze solving algorithm that uses a* to solve different mazes, writen in c# using the .net framework and visual studio, made for a school practice project.
The mazes are inputed from the folder labeled "Mazes" and are in a text based format with # being used for the walls and " " used for availiable squares "S" used to indicate the start and "E" to indicate the end. If you are going to create your own maze please make sure that each row has the same amount of characters on each line as if not then the file reading will fail and cause an error.
You need to replace the location in the source code and recompile in order to run