CSE 373 Maze Solver Revisited ============================= This program shows two different algorithms that can find a path to escape from a 2-D maze. Maze input file name [Enter for maze1.txt]? maze8 Both algorithms searching for a path ... PriorityQueueSolver: Solved the maze (visited 195 locations). ############################### #.....#...........#..S..# # #.....#.....#.....#.....#. # #.....#.....#.....#........ # #.....#.....#.....#.....#... # #...........#...........#.... # #######.####################.## # #.....# # #.... # # #.....# # #. # # #.....# ......... # # #.....# ..# # # # #.....# .. # # # ###############.###### #### ### # # #... # # # # ... #. # # # # .#.. #. # # # # .#....... # # # #.....#.... # # # # #.################# ####### ### #. # # # # # #. # # # # # #. # # # # # #.. # # # # # # .E # # # # ############################### DequeSolver: Solved the maze (visited 421 locations). ############################### #.....#...........#..S..#.....# #.....#.....#.....#.....#.....# #.....#.....#.....#...........# #.....#.....#.....#.....#.....# #...........#...........#.....# #######.####################.## # #.....#.....#.....#.....# # #.....#.....#.....#.....# # #.....#.................# # #.....#.....#.....#.....# # #.....#.....#.....#.....# ###############.######.####.### # ....#.....#.....#.....#.....# #...........#.....#.....#.....# #.....#.....#.....#.....#.....# #.....#...........#.....#.....# #.....#.....#.....#.....#.....# #.#################.#######.### #... # # #.... #.....# # . # # #.....#.....# # . # # #.....#.....# # . # # #.....#.....# # E # # #...........# ###############################