CSCI112  Lab 11- Faster Maze Solver Solved

30.00 $

Category:

Description

5/5 - (1 vote)

 

File names: Names of files, functions, and variables, when specified, must be EXACTLY as specified. This includes simple mistakes such as capitalization.
Documentation: Each file should begin with a docstring that includes your name, the class number and name, the lab number, and a short description of the lab, as well as documentation pertinent to that particular file.
Speeding up search with heuristics: When your depth-first solver from last week was deciding which node to explore next, it had no guidance at all from the maze itself. A human will look at the maze and use spatial reasoning to make reasonable choices. Not infallible choices, just reasonable ones.
1
We are going to give our maze solver a bit of intelligence by using a priority queue for the gray cells instead of a stack. Each node’s priority will be determined by the Manhattan distance from the goal. Manhattan distance between two points is defined as follows:
manhattan((x1,y1),(x2,y2)) = |x1 − x2| + |y1 − y2|
where |x| is the absolute value of x.
Our heuristic is that nodes that are closer to the goal are more likely to be on the solution path than nodes that are farther. We will accordingly use a min queue for the cells on the gray list, and use the cell closest to the goal each time.
Technically this algorithm is called “greedy,” in that it tries to make the biggest improvement possible with each step. It takes nothing into account except getting closer to its goal!
Timing: Run some experiments to see how much you’ve speeded up the search. In lieu of actual timing, you can compare the number of nodes added to the gray list before termination. The heuristic should reduce this.
2

  • lab11mazesolverfaster-kk8l26.zip