672 B
672 B
| 1 | maze | strategy | time_ms | visited_cells | path_length | success_rate |
|---|---|---|---|---|---|---|
| 2 | Small (10x10) | BFS | 0.052460000733844936 | 30.0 | 14.0 | 1.0 |
| 3 | Small (10x10) | DFS | 0.0480999966384843 | 32.0 | 14.0 | 1.0 |
| 4 | Small (10x10) | A* | 0.07206000154837966 | 23.0 | 14.0 | 1.0 |
| 5 | Medium (50x50) | BFS | 0.2786600001854822 | 182.0 | 92.0 | 1.0 |
| 6 | Medium (50x50) | DFS | 0.14713999989908189 | 93.0 | 92.0 | 1.0 |
| 7 | Medium (50x50) | A* | 0.5699400004232302 | 182.0 | 92.0 | 1.0 |
| 8 | Large (100x100) | BFS | 0.39185999776236713 | 201.0 | 149.0 | 1.0 |
| 9 | Large (100x100) | DFS | 0.2371800015680492 | 151.0 | 149.0 | 1.0 |
| 10 | Large (100x100) | A* | 0.5810399976326153 | 200.0 | 149.0 | 1.0 |
| 11 | Empty | BFS | 3.187239999533631 | 1834.0 | 86.0 | 1.0 |
| 12 | Empty | DFS | 1.9440599950030446 | 1797.0 | 922.0 | 1.0 |
| 13 | Empty | A* | 6.751939994865097 | 1834.0 | 86.0 | 1.0 |