Spring 2024 - CS607 - 1
Spring 2024 - CS607 - 1
Assignment # 01 Deadline
th
29 of April 2024
Spring 2024
Please carefully read the following instructions before attempting the assignment.
You should consult the recommended books to clarify your concepts as handouts are not sufficient.
You are supposed to submit your assignment in Doc or Docx format.
Any other formats like scan images, PDF, ZIP, RAR, PPT, BMP, etc. will not be accepted.
Topic Covered:
Introduction of Artificiall Intelligence
Search Strategies
Breath First search (BFS) and Depth First Search (DFS)
Topic Covered
Lecture 01 to Lecture 10
NOTE
No assignment will be accepted after the due date via email in any case (whether it is the case of load shedding
or internet malfunctioning etc.). Hence refrain from uploading assignments in the last hour of the deadline. It is
recommended to upload the solution at least two days before its closing date.
If you people find any mistake or confusion in the assignment (Question statement), please consult with your
instructor before the deadline. After the deadline, no queries will be entertained in this regard.
Consider the following tree, use simple search algorithm (given on page# 24 of handouts) and apply the Depth First Search
(DFS) strategy. The starting node is 1, and the goal node is 7. You are required to fill out only the given Table.
Breath First Search (BFS) is a memory hungry search strategy which means it requires a lot of memory whiling processing
a problem even having a reasonable and moderate complexity. It is primarily due to the branching factor that increase the
number of ways to search for the solution (goal/target).
Now, consider that we have a tree whith the branching factor of 4 and depth (or height) 12, while each node requires 16
bytes storage. If the Breath First Search (BFS) is applied to this tree, then calculate the memory required for this search.