🤖breadth-first search
🚧 under construction
data structure ⟩ graph ⟩ BFS
Breadth-First Search (BFS)
visits a graph node and explores its neighbors before going on to any of its child nodes. (going wide first before going deep)
an iterative algorithm and makes use of a queue.
Last updated