Ai Practical 1 To 2
Ai Practical 1 To 2
What is BFS?
Breadth First Search (BFS) is a fundamental graph traversal
algorithm. It involves visiting all the connected nodes of a graph in a
level-by-level manner.
It is a handy algorithm that is often used for map traversal to find the
shortest path to be taken. A* was initially designed as a graph
traversal problem, to help build a robot that can find its own course. It
still remains a widely popular algorithm for graph traversal.