отчет и мемчик

This commit is contained in:
soldatkinao 2026-05-23 20:02:39 +03:00
parent bb11731efd
commit 7e0ac65b64
4 changed files with 15 additions and 15 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 369 KiB

Binary file not shown.

View File

@ -1,16 +1,16 @@
maze,algo,time,visited,length,found
small.txt,BFS,0.10989999282173812,65.0,15,True
small.txt,DFS,0.065619993256405,65.0,31,True
small.txt,A*,0.14332000282593071,65.0,15,True
medium.txt,BFS,0.3859999938867986,254.0,95,True
medium.txt,DFS,0.33629999379627407,252.0,95,True
medium.txt,A*,0.413980009034276,179.0,95,True
large.txt,BFS,1.4565200021024793,950.0,313,True
large.txt,DFS,1.5662399993743747,1079.0,467,True
large.txt,A*,2.138140005990863,819.0,313,True
empty.txt,BFS,0.1598999951966107,102.0,102,True
empty.txt,DFS,0.13713999651372433,102.0,102,True
empty.txt,A*,0.20723999477922916,102.0,102,True
no_exit.txt,BFS,0.049780000699684024,12.0,0,False
no_exit.txt,DFS,0.04159999662078917,12.0,0,False
no_exit.txt,A*,0.06787999300286174,12.0,0,False
small.txt,BFS,0.08549999911338091,65.0,15,True
small.txt,DFS,0.052140007028356194,65.0,31,True
small.txt,A*,0.08495999500155449,65.0,15,True
medium.txt,BFS,0.2455800073221326,254.0,95,True
medium.txt,DFS,0.21176000591367483,252.0,95,True
medium.txt,A*,0.23805999662727118,179.0,95,True
large.txt,BFS,0.8688000147230923,950.0,313,True
large.txt,DFS,0.9158599947113544,1079.0,467,True
large.txt,A*,1.1747399985324591,819.0,313,True
empty.txt,BFS,0.13876001466996968,102.0,102,True
empty.txt,DFS,0.10151999886147678,102.0,102,True
empty.txt,A*,0.13205999857746065,102.0,102,True
no_exit.txt,BFS,0.013979995856061578,12.0,0,False
no_exit.txt,DFS,0.012719997903332114,12.0,0,False
no_exit.txt,A*,0.01692000078037381,12.0,0,False

1 maze algo time visited length found
2 small.txt BFS 0.10989999282173812 0.08549999911338091 65.0 15 True
3 small.txt DFS 0.065619993256405 0.052140007028356194 65.0 31 True
4 small.txt A* 0.14332000282593071 0.08495999500155449 65.0 15 True
5 medium.txt BFS 0.3859999938867986 0.2455800073221326 254.0 95 True
6 medium.txt DFS 0.33629999379627407 0.21176000591367483 252.0 95 True
7 medium.txt A* 0.413980009034276 0.23805999662727118 179.0 95 True
8 large.txt BFS 1.4565200021024793 0.8688000147230923 950.0 313 True
9 large.txt DFS 1.5662399993743747 0.9158599947113544 1079.0 467 True
10 large.txt A* 2.138140005990863 1.1747399985324591 819.0 313 True
11 empty.txt BFS 0.1598999951966107 0.13876001466996968 102.0 102 True
12 empty.txt DFS 0.13713999651372433 0.10151999886147678 102.0 102 True
13 empty.txt A* 0.20723999477922916 0.13205999857746065 102.0 102 True
14 no_exit.txt BFS 0.049780000699684024 0.013979995856061578 12.0 0 False
15 no_exit.txt DFS 0.04159999662078917 0.012719997903332114 12.0 0 False
16 no_exit.txt A* 0.06787999300286174 0.01692000078037381 12.0 0 False

Binary file not shown.

After

Width:  |  Height:  |  Size: 232 KiB