[2] add plots and csv data

This commit is contained in:
lukovnikovde 2026-05-24 22:43:32 +00:00
parent 72d33c2b84
commit e0f27a4ef0
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,16 @@
maze,algo,time_ms,visited,length
Small 10x6,BFS,0.03532833337279347,11.0,8.0
Small 10x6,DFS,0.019208666647803813,9.0,8.0
Small 10x6,AStar,0.04686633352927553,11.0,8.0
Medium 10x10,BFS,0.05395633343141526,28.0,16.0
Medium 10x10,DFS,0.038764333718669754,23.0,18.0
Medium 10x10,AStar,0.07918899973446969,21.0,16.0
Large 20x20,BFS,0.3642953330806146,183.0,35.0
Large 20x20,DFS,0.2671169998696617,194.0,103.0
Large 20x20,AStar,0.45344133347195265,104.0,35.0
Empty 15x15,BFS,0.028481000299507286,16.0,16.0
Empty 15x15,DFS,0.028324666648889735,16.0,16.0
Empty 15x15,AStar,0.050569666503482345,16.0,16.0
No exit 10x10,BFS,0.05937366677244427,12.0,0.0
No exit 10x10,DFS,0.0502500000341873,12.0,0.0
No exit 10x10,AStar,0.09478233338692614,12.0,0.0
1 maze algo time_ms visited length
2 Small 10x6 BFS 0.03532833337279347 11.0 8.0
3 Small 10x6 DFS 0.019208666647803813 9.0 8.0
4 Small 10x6 AStar 0.04686633352927553 11.0 8.0
5 Medium 10x10 BFS 0.05395633343141526 28.0 16.0
6 Medium 10x10 DFS 0.038764333718669754 23.0 18.0
7 Medium 10x10 AStar 0.07918899973446969 21.0 16.0
8 Large 20x20 BFS 0.3642953330806146 183.0 35.0
9 Large 20x20 DFS 0.2671169998696617 194.0 103.0
10 Large 20x20 AStar 0.45344133347195265 104.0 35.0
11 Empty 15x15 BFS 0.028481000299507286 16.0 16.0
12 Empty 15x15 DFS 0.028324666648889735 16.0 16.0
13 Empty 15x15 AStar 0.050569666503482345 16.0 16.0
14 No exit 10x10 BFS 0.05937366677244427 12.0 0.0
15 No exit 10x10 DFS 0.0502500000341873 12.0 0.0
16 No exit 10x10 AStar 0.09478233338692614 12.0 0.0

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB