diff --git a/pogodinda/lab2/results/experiment_results.csv b/pogodinda/lab2/results/experiment_results.csv new file mode 100644 index 0000000..327fd66 --- /dev/null +++ b/pogodinda/lab2/results/experiment_results.csv @@ -0,0 +1,25 @@ +Лабиринт,Алгоритм,Время_мс,Посещено_клеток,Длина_пути +small_10x10,BFS,0.185460,52,25 +small_10x10,DFS,0.115700,49,31 +small_10x10,A*,0.231720,47,25 +small_10x10,Dijkstra,0.243700,52,25 +medium_50x50,BFS,2.559340,603,425 +medium_50x50,DFS,1.772520,454,425 +medium_50x50,A*,3.118380,591,425 +medium_50x50,Dijkstra,2.985780,601,425 +large_100x100,BFS,9.025880,1761,877 +large_100x100,DFS,4.254880,946,877 +large_100x100,A*,11.625360,1689,877 +large_100x100,Dijkstra,11.725580,1759,877 +empty_20x20,BFS,1.531960,398,35 +empty_20x20,DFS,1.376720,399,187 +empty_20x20,A*,1.968720,324,35 +empty_20x20,Dijkstra,2.215060,396,35 +no_exit_10x10,BFS,0.000700,0,0 +no_exit_10x10,DFS,0.000560,0,0 +no_exit_10x10,A*,0.000420,0,0 +no_exit_10x10,Dijkstra,0.000540,0,0 +weighted_15x15,BFS,0.528120,145,33 +weighted_15x15,DFS,0.270900,111,53 +weighted_15x15,A*,0.815480,131,33 +weighted_15x15,Dijkstra,0.762560,138,33 diff --git a/pogodinda/lab2/results/maze_comparison.png b/pogodinda/lab2/results/maze_comparison.png new file mode 100644 index 0000000..40ee4f9 Binary files /dev/null and b/pogodinda/lab2/results/maze_comparison.png differ diff --git a/pogodinda/lab2/results/time_comparison.png b/pogodinda/lab2/results/time_comparison.png new file mode 100644 index 0000000..46d54ed Binary files /dev/null and b/pogodinda/lab2/results/time_comparison.png differ diff --git a/pogodinda/lab2/results/visited_cells.png b/pogodinda/lab2/results/visited_cells.png new file mode 100644 index 0000000..3945592 Binary files /dev/null and b/pogodinda/lab2/results/visited_cells.png differ