[2] add plots.png and results.csv

This commit is contained in:
meosyam 2026-09-03 15:23:05 +00:00
parent 7514883955
commit 306380eb55
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
maze,strategy,avg_time_ms,avg_visited,avg_path_length,path_found
maze1.txt,BFS,0.16815240051073488,50.0,15.0,True
maze1.txt,DFS,0.08232240033976268,30.0,19.0,True
maze1.txt,AStar,0.25608100040699355,50.0,15.0,True
maze10x10.txt,BFS,0.053825999930268154,16.0,0,False
maze10x10.txt,DFS,0.0677499996527331,16.0,0,False
maze10x10.txt,AStar,0.08008160039025825,16.0,0,False
maze20x20.txt,BFS,0.11614620016189292,36.0,0,False
maze20x20.txt,DFS,0.10411820003355388,36.0,0,False
maze20x20.txt,AStar,0.1797744000214152,36.0,0,False
maze_empty.txt,BFS,0.19637999976112042,64.0,15.0,True
maze_empty.txt,DFS,0.14314979962364305,64.0,29.0,True
maze_empty.txt,AStar,0.31887079967418686,64.0,15.0,True
1 maze strategy avg_time_ms avg_visited avg_path_length path_found
2 maze1.txt BFS 0.16815240051073488 50.0 15.0 True
3 maze1.txt DFS 0.08232240033976268 30.0 19.0 True
4 maze1.txt AStar 0.25608100040699355 50.0 15.0 True
5 maze10x10.txt BFS 0.053825999930268154 16.0 0 False
6 maze10x10.txt DFS 0.0677499996527331 16.0 0 False
7 maze10x10.txt AStar 0.08008160039025825 16.0 0 False
8 maze20x20.txt BFS 0.11614620016189292 36.0 0 False
9 maze20x20.txt DFS 0.10411820003355388 36.0 0 False
10 maze20x20.txt AStar 0.1797744000214152 36.0 0 False
11 maze_empty.txt BFS 0.19637999976112042 64.0 15.0 True
12 maze_empty.txt DFS 0.14314979962364305 64.0 29.0 True
13 maze_empty.txt AStar 0.31887079967418686 64.0 15.0 True

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB