forked from UNN/2026-rff_mp
760 B
760 B
| 1 | maze | algo | time | visited | length | found |
|---|---|---|---|---|---|---|
| 2 | small.txt | BFS | 0.08549999911338091 | 65.0 | 15 | True |
| 3 | small.txt | DFS | 0.052140007028356194 | 65.0 | 31 | True |
| 4 | small.txt | A* | 0.08495999500155449 | 65.0 | 15 | True |
| 5 | medium.txt | BFS | 0.2455800073221326 | 254.0 | 95 | True |
| 6 | medium.txt | DFS | 0.21176000591367483 | 252.0 | 95 | True |
| 7 | medium.txt | A* | 0.23805999662727118 | 179.0 | 95 | True |
| 8 | large.txt | BFS | 0.8688000147230923 | 950.0 | 313 | True |
| 9 | large.txt | DFS | 0.9158599947113544 | 1079.0 | 467 | True |
| 10 | large.txt | A* | 1.1747399985324591 | 819.0 | 313 | True |
| 11 | empty.txt | BFS | 0.13876001466996968 | 102.0 | 102 | True |
| 12 | empty.txt | DFS | 0.10151999886147678 | 102.0 | 102 | True |
| 13 | empty.txt | A* | 0.13205999857746065 | 102.0 | 102 | True |
| 14 | no_exit.txt | BFS | 0.013979995856061578 | 12.0 | 0 | False |
| 15 | no_exit.txt | DFS | 0.012719997903332114 | 12.0 | 0 | False |
| 16 | no_exit.txt | A* | 0.01692000078037381 | 12.0 | 0 | False |