Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Tasks: Part 1 : Basic pathfinding To begin with, you will consider the problem of finding a path through a maze from a given start

Tasks:
Part 1: Basic pathfinding
To begin with, you will consider the problem of finding a path through a maze from a given start
state to a given goal state. This scenario is illustrated in the figure above, where the start position
is indicated by the "Pacman" icon and the goal state is a dot. The maze layout will be given to
you in a simple text format, where '%' stands for walls, 'P' for the starting position, and '.' for the
goal (see sample maze file). For this part of the assignment, all step costs are equal to one.
To solve different mazes, please implement the two search algorithms in the following two
groups.
Group 1:
Breadth-first search;
Group 2:
A** search.
For A* search, use the Manhattan distance from the current position to the goal as the heuristic
function.
Run each of the above algorithms on the small maze, medium maze, big maze, and the open
maze. For each problem instance and each search algorithm, report the following:
a. The solution and its path cost;
b. Number of nodes expanded;
c. Maximum tree depth searched;
d. Maximum size of the fringe.
You can display the solution by putting a '.' in every maze square visited on the path (example
solution to the big maze).
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started