619 B
619 B
| 1 | maze | strategy | time_ms | visited_cells | path_length |
|---|---|---|---|---|---|
| 2 | Small 10x6 | BFS | 0.1212273333142851 | 27.0 | 14.0 |
| 3 | Small 10x6 | DFS | 0.052675666665891185 | 27.0 | 18.0 |
| 4 | Small 10x6 | AStar | 0.0807179999355867 | 19.0 | 14.0 |
| 5 | Medium 10x10 | BFS | 0.033711000014591264 | 19.0 | 12.0 |
| 6 | Medium 10x10 | DFS | 0.026283666632783326 | 18.0 | 12.0 |
| 7 | Medium 10x10 | AStar | 0.04449633335449713 | 12.0 | 12.0 |
| 8 | Large 20x20 | BFS | 0.025264999976570834 | 16.0 | 5.0 |
| 9 | Large 20x20 | DFS | 0.090734999957931 | 17.0 | 9.0 |
| 10 | Large 20x20 | AStar | 0.022785333309608784 | 9.0 | 5.0 |
| 11 | Empty 15x15 | BFS | 0.09571933325484376 | 78.0 | 15.0 |
| 12 | Empty 15x15 | DFS | 0.055960999892098094 | 76.0 | 43.0 |
| 13 | Empty 15x15 | AStar | 0.13327333332805816 | 63.0 | 15.0 |