Linked from
The 21 pages that link to Breadth-first search, each with the reason it gives.
Tree (graph theory)Related: On a tree, it visits vertices by their distance from the chosen root.
Connected componentRelated: One search discovers all vertices reachable from its starting vertex.
Adjacency listRelated: It scans each visited vertex's list to enqueue undiscovered neighbors.
Spanning treeRelated: Its discovery edges form a spanning tree organized by distance layers.
Odd cycleRelated: BFS layers expose parity conflicts that certify an odd cycle.
Planar separator theoremRelated: Distance layers provide the rings used in common separator proofs.
MazeRelated: It finds a shortest route when a maze is represented as an unweighted graph.