https://github.com/cantaro86/maze-3d
C++ program that solves the maze in 3D
https://github.com/cantaro86/maze-3d
cpp maze maze3d
Last synced: about 2 months ago
JSON representation
C++ program that solves the maze in 3D
- Host: GitHub
- URL: https://github.com/cantaro86/maze-3d
- Owner: cantaro86
- Created: 2019-08-07T19:26:53.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-07T19:40:31.000Z (over 5 years ago)
- Last Synced: 2025-01-07T23:40:00.103Z (4 months ago)
- Topics: cpp, maze, maze3d
- Language: C++
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MAZE 3D
==========================This is a problem I solved in C++.
The problem assumes that the Prince (indicated by 1) is at the top floor and that the Princess (indicated by 2) is at the ground floor. The dots '.' represent the open ways, and the 'o' points represent the walls.I solved this problem by recursion.
To compile the program just run the command `make` in the shell.
Feel free to modify the map (in the `main.cpp`) and check the output.