700 B
700 B
| 1 | maze | strategy | avg_time_ms | avg_visited | avg_path_length | path_found |
|---|---|---|---|---|---|---|
| 2 | maze1.txt | BFS | 0.16815240051073488 | 50.0 | 15.0 | True |
| 3 | maze1.txt | DFS | 0.08232240033976268 | 30.0 | 19.0 | True |
| 4 | maze1.txt | AStar | 0.25608100040699355 | 50.0 | 15.0 | True |
| 5 | maze10x10.txt | BFS | 0.053825999930268154 | 16.0 | 0 | False |
| 6 | maze10x10.txt | DFS | 0.0677499996527331 | 16.0 | 0 | False |
| 7 | maze10x10.txt | AStar | 0.08008160039025825 | 16.0 | 0 | False |
| 8 | maze20x20.txt | BFS | 0.11614620016189292 | 36.0 | 0 | False |
| 9 | maze20x20.txt | DFS | 0.10411820003355388 | 36.0 | 0 | False |
| 10 | maze20x20.txt | AStar | 0.1797744000214152 | 36.0 | 0 | False |
| 11 | maze_empty.txt | BFS | 0.19637999976112042 | 64.0 | 15.0 | True |
| 12 | maze_empty.txt | DFS | 0.14314979962364305 | 64.0 | 29.0 | True |
| 13 | maze_empty.txt | AStar | 0.31887079967418686 | 64.0 | 15.0 | True |