This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/4_Silver/BFS.md
2020-06-23 13:27:41 -04:00

1.3 KiB

id title author prerequisites description
bfs Breadth First Search Benjamin Qi
Silver - Depth First Search
Traversing a graph in a way such that vertices closer to the starting vertex are processed first.
No silver problem should require BFS rather than DFS, but it's still good to know at this level.

Tutorial

Problems