You are on page 1of 4

‫جامعة الملك خالد‬

‫كلية علوم الحاسب اآللي‬


‫قسم علوم الحاسب اآللي‬

King Khalid University


College of Computer Science
Department of Computer Sciences

STUDENT MINI PROJECT REPORT

Course Code : 361CCS-4


Course Name : Introduction to Artificial Intelligence
Section Number:
Student ID : 439802519

Student Name :
EXPERIMENT/EXERCISE NO. : 06

TITLE OF PROJECT: A* Search Algorithm Problem.

1. What is the Statement of the A* Algorithm?


A* Search Algorithm is a simple and efficient search algorithm that can be used to find the optimal
path between two nodes in a graph. It will be used for the shortest path finding.

The A* Search Algorithm also uses a heuristic function that provides additional information regarding
how far away from the goal node we are. This function is used in conjunction with the f-heap data
structure in order to make searching more efficient

2. What is the logic used in this algorithm ?

3. Data Structures use in solving the Problem.


4. Implementation with Results(Using Python)

You might also like