Author | Message |
---|---|
rabbott
Posts: 1649
|
Posted 14:07 Sep 01, 2019 |
The current version (fifteen_puzzle.py or fifteen_puzzle.ipynb)) of the A* system uses all three search approaches: A*, DFS, and BFS. The code also allows a specified starting point. A starting point is included that has these properties. # A* search <=========== Fast and a short path. # Depth-first search <=========== Fast, but a very(!) long path. # Breadth-first search <============ Very(!) slow, but a short path Try it.
Last edited by rabbott at
21:00 Sep 01, 2019.
|