802 B
802 B
| 1 | maze | strategy | mean_time_ms | mean_visited_cells | path_length | path_found |
|---|---|---|---|---|---|---|
| 2 | empty_50x50 | BFS | 22.75627143015819 | 2304 | 94 | True |
| 3 | empty_50x50 | DFS | 0.6384714340258922 | 95 | 94 | True |
| 4 | empty_50x50 | A* | 60.188757155888844 | 2304 | 94 | True |
| 5 | large_100x100 | BFS | 67.55744285848257 | 6409 | 194 | True |
| 6 | large_100x100 | DFS | 17.82360000236492 | 1561 | 762 | True |
| 7 | large_100x100 | A* | 28.85528571537829 | 1997 | 194 | True |
| 8 | medium_50x50 | BFS | 7.83954284686063 | 1700 | 94 | True |
| 9 | medium_50x50 | DFS | 2.0575000006439432 | 408 | 266 | True |
| 10 | medium_50x50 | A* | 14.112728556418526 | 942 | 94 | True |
| 11 | no_path_30x30 | BFS | 3.559471424003797 | 781 | 0 | False |
| 12 | no_path_30x30 | DFS | 3.799185697321913 | 781 | 0 | False |
| 13 | no_path_30x30 | A* | 9.671614305781466 | 781 | 0 | False |
| 14 | small_10x10 | BFS | 0.1555857348388859 | 58 | 14 | True |
| 15 | small_10x10 | DFS | 0.041128576932741065 | 15 | 14 | True |
| 16 | small_10x10 | A* | 0.3223428502678871 | 58 | 14 | True |