https://github.com/apebl/eight-puzzle-solver
A 8-puzzle solver written in C++
https://github.com/apebl/eight-puzzle-solver
8puzzle 8puzzle-solver assignment cpp cpp17
Last synced: 10 months ago
JSON representation
A 8-puzzle solver written in C++
- Host: GitHub
- URL: https://github.com/apebl/eight-puzzle-solver
- Owner: apebl
- License: mit
- Created: 2021-05-19T18:35:11.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T18:38:25.000Z (about 5 years ago)
- Last Synced: 2024-08-11T09:30:00.437Z (almost 2 years ago)
- Topics: 8puzzle, 8puzzle-solver, assignment, cpp, cpp17
- Language: C++
- Homepage:
- Size: 185 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# 8-Puzzle Solver
A 8-puzzle solver written in C++.
See [REPORT.pdf](REPORT.pdf) for a detailed description.
## Build and run
### Using Meson
```sh
meson _build
meson compile -C _build
./_build/eight-puzzle
```
### Manual compile
```sh
g++ eight_puzzle/*.cpp eight_puzzle/*.hpp
./a.out
```