2018-04-25 17:41:21 +03:00
..
2018-04-25 17:35:44 +03:00
2018-04-25 17:41:21 +03:00

Breadth-First Search (BFS)

Breadth-first search (BFS) is an algorithm for traversing or searching tree or graph data structures. It starts at the tree root (or some arbitrary node of a graph, sometimes referred to as a 'search key') and explores the neighbor nodes first, before moving to the next level neighbors.

Algorithm Visualization

References