Graphs (Depth-first traversal)

The nodes are traversed from top to bottom. (Reading time: under 2 minutes)

We'll cover the following...

To traverse a graph depth-first, we need to use a stack. We ...