752 B
752 B
| 1 | maze | algo | time | visited | length | found |
|---|---|---|---|---|---|---|
| 2 | small.txt | BFS | 0.10989999282173812 | 65.0 | 15 | True |
| 3 | small.txt | DFS | 0.065619993256405 | 65.0 | 31 | True |
| 4 | small.txt | A* | 0.14332000282593071 | 65.0 | 15 | True |
| 5 | medium.txt | BFS | 0.3859999938867986 | 254.0 | 95 | True |
| 6 | medium.txt | DFS | 0.33629999379627407 | 252.0 | 95 | True |
| 7 | medium.txt | A* | 0.413980009034276 | 179.0 | 95 | True |
| 8 | large.txt | BFS | 1.4565200021024793 | 950.0 | 313 | True |
| 9 | large.txt | DFS | 1.5662399993743747 | 1079.0 | 467 | True |
| 10 | large.txt | A* | 2.138140005990863 | 819.0 | 313 | True |
| 11 | empty.txt | BFS | 0.1598999951966107 | 102.0 | 102 | True |
| 12 | empty.txt | DFS | 0.13713999651372433 | 102.0 | 102 | True |
| 13 | empty.txt | A* | 0.20723999477922916 | 102.0 | 102 | True |
| 14 | no_exit.txt | BFS | 0.049780000699684024 | 12.0 | 0 | False |
| 15 | no_exit.txt | DFS | 0.04159999662078917 | 12.0 | 0 | False |
| 16 | no_exit.txt | A* | 0.06787999300286174 | 12.0 | 0 | False |