Breadth
First Search is a tree or graph traversing (searching) algorithm.
In which each node or vertex is explored horizontally. We can select any vertex
as a staring vertex, but follow only horizontal exploration of the vertex.
Rule: when we
select any of the vertexes, explore only adjacent vertex first, and then move
to the next
0 Comments