Add notes for BFS as well

This commit is contained in:
2026-07-21 16:05:00 -04:00
parent 42a3430627
commit 95544077bc
3 changed files with 19 additions and 10 deletions

View File

@@ -1,3 +1,5 @@
## Outline
To make our knowledge of graphs useful, we'll go over our first traversal method today: [depth-first search](./depth-first-search.md). If we have time we'll go over breadth-first search, which is the relative to depth-first search.
To make our knowledge of graphs useful, we'll go over our first traversal method today: [depth-first search](./depth-first-search.md). We will also go over [breadth-first search](./breadth-first-search.md), and how both algorithms can be useful.
Assignment: finish the code for depth-first search, and also implement breadth-first search.