621 B
621 B
| 1 | maze | strategy | time_ms | visited_cells | path_length |
|---|---|---|---|---|---|
| 2 | Small 10x6 | BFS | 0.014544333377367972 | 9.0 | 5.0 |
| 3 | Small 10x6 | DFS | 0.02932466653267814 | 26.0 | 19.0 |
| 4 | Small 10x6 | AStar | 0.019240666612555895 | 5.0 | 5.0 |
| 5 | Medium 10x10 | BFS | 0.017117999959737062 | 18.0 | 8.0 |
| 6 | Medium 10x10 | DFS | 0.008425000032730168 | 9.0 | 8.0 |
| 7 | Medium 10x10 | AStar | 0.015577000037107306 | 8.0 | 8.0 |
| 8 | Large 20x20 | BFS | 0.1257213333095327 | 116.0 | 69.0 |
| 9 | Large 20x20 | DFS | 0.17248366657440783 | 173.0 | 69.0 |
| 10 | Large 20x20 | AStar | 0.19925633326541478 | 110.0 | 69.0 |
| 11 | Empty 15x15 | BFS | 0.35908533315402263 | 240.0 | 29.0 |
| 12 | Empty 15x15 | DFS | 0.1472789999752422 | 224.0 | 119.0 |
| 13 | Empty 15x15 | AStar | 0.5114890000186278 | 224.0 | 29.0 |