COS3751 assignment 3 memo 2024:
Question 1: 30 Marks
(1.1) Highlight the differences between a tree and graph search.
(1.2) How does a Breadth First Search (BFS) differ from the general tree search algorithm? What is the
major reason for implementing the algorithm in this way? Provide an exampl...
Crystal Indigo!
Crystal Indigo!
Providing all solutions you need anytime
+27 76 626 8187
, Question 1
1.1 Differences between Tree and Graph Search
Tree search Graph search
A tree search algorithm starts at a root node and A graph search algorithm also starts at a root
explores branches to find a goal state. node but accounts for the possibility of cycles
and revisits to the same nodes.
It assumes that each node is unique and doesn't Maintains an explored set to track visited nodes,
revisit nodes. ensuring that the algorithm does not revisit them
and thus avoids infinite loops.
No need to keep track of visited nodes since all More complex than tree search due to the need
nodes are distinct. to handle redundant paths and cycles.
The main difference between the two is that we don’t need to keep track of already explored nodes,
since a simple tree cannot have revisited states. So the tree search simple selects a leaf node from
the frontier, goal tests, and if it is a goal it returns the path to that node. Applying a tree search to a
graph creates problems since there may be redundant paths and loops. The graph search solves this
problem by augmenting the tree search with an explored list. When nodes are generated during the
search that are already on the closed list they are not added to the frontier.
1.2 How does a Breadth First Search (BFS) differ from the general tree
search algorithm? What is the major reason for implementing the algorithm in
this way? Provide an example to aid your discussion.
BFS explores the search space level by level, visiting all nodes at the current depth before moving
on to nodes at the next depth level. It guarantees finding the shortest path in an unweighted graph,
making it suitable for scenarios where the goal is to minimize steps or actions.
The general tree search algorithm does not prescribe a specific order of node exploration, meaning
it can be implemented as BFS, DFS, or another strategy. Unlike BFS, a general tree search might
not guarantee the shortest path if it does not explore nodes level by level. In a general tree search
the goal test phase happens on expansion. Since a BFS has degraded performace in large search
spaces, the goal test takes place during generation. Any suitable example to illustrate this concept is
considered
Major Reason for Implementing BFS:
BFS is implemented to ensure that the shortest path is found in the minimum number of steps,
which is crucial in scenarios where the cost is associated with the number of actions taken. For
example, consider a maze where you need to find the shortest path from the entrance to the exit.
BFS will explore all possible paths leading one step away from the entrance, then all paths leading
two steps away, and so on, ensuring the shortest path is found.
1.3 Consider an example of a sliding-block puzzle game state provided
below (Figure 1). How many distinct states are there for puzzles of this sort?
How many search nodes? Explain how you reached your answer.
1. Distinct States:
• The number of distinct states in a sliding-block puzzle depends on the number of
blocks and positions they can occupy. For a 15-puzzle (4x4 grid with 15 blocks and
The benefits of buying summaries with Stuvia:
Guaranteed quality through customer reviews
Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.
Quick and easy check-out
You can quickly pay through credit card for the summaries. There is no membership needed.
Focus on what matters
Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!
Frequently asked questions
What do I get when I buy this document?
You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.
Satisfaction guarantee: how does it work?
Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.
Who am I buying these notes from?
Stuvia is a marketplace, so you are not buying this document from us, but from seller CrystalIndigo. Stuvia facilitates payment to the seller.
Will I be stuck with a subscription?
No, you only buy these notes for £5.65. You're not tied to anything after your purchase.