1.2 KiB
1.2 KiB
| 1 | maze_file | maze_size | strategy | time_mean | time_min | time_max | visited_mean | path_length_mean | path_found |
|---|---|---|---|---|---|---|---|---|---|
| 2 | small.txt | 10×10 | BFS | 0.13488009572029114 | 0.10789930820465088 | 0.22369995713233948 | 15.0 | 15.0 | True |
| 3 | small.txt | 10×10 | DFS | 0.06621982902288437 | 0.05200039595365524 | 0.11539924889802933 | 21.0 | 21.0 | True |
| 4 | small.txt | 10×10 | A* | 0.1621600240468979 | 0.11659972369670868 | 0.21409988403320312 | 15.0 | 15.0 | True |
| 5 | medium.txt | 20×11 | BFS | 0.8280398324131966 | 0.6230995059013367 | 1.116500236093998 | 26.0 | 26.0 | True |
| 6 | medium.txt | 20×11 | DFS | 0.9217998012900352 | 0.771399587392807 | 1.2620994821190834 | 90.0 | 90.0 | True |
| 7 | medium.txt | 20×11 | A* | 1.2338800355792046 | 1.066099852323532 | 1.5382999554276466 | 26.0 | 26.0 | True |
| 8 | large.txt | 30×15 | BFS | 1.9566401839256287 | 1.3727005571126938 | 2.646399661898613 | 40.0 | 40.0 | True |
| 9 | large.txt | 30×15 | DFS | 1.7152601853013039 | 1.3266997411847115 | 2.037300728261471 | 196.0 | 196.0 | True |
| 10 | large.txt | 30×15 | A* | 1.906839944422245 | 1.2140991166234016 | 2.70990002900362 | 40.0 | 40.0 | True |
| 11 | empty.txt | 30×1 | BFS | 0.09321998804807663 | 0.07409974932670593 | 0.12030079960823059 | 30.0 | 30.0 | True |
| 12 | empty.txt | 30×1 | DFS | 0.24830028414726257 | 0.21299999207258224 | 0.2831006422638893 | 30.0 | 30.0 | True |
| 13 | empty.txt | 30×1 | A* | 0.17731990665197372 | 0.09519979357719421 | 0.30350033193826675 | 30.0 | 30.0 | True |