0
8.8kviews
Explain various graph traversal techniques.
1 Answer
1
254views
  • Breadth-First Search (BFS) is a graph search algorithm that begins at the root node and explores all the neighboring nodes. Then for each of those nearest nodes, it explores their unexplored neighbor nodes, and so on, until it finds the goal.
  • BFS exhaustively searches the entire graph or sequence without …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.