Graph Search: Definition
- State the general graph search problem.
The Graph Search problem, in a nutshell, is figuring out if a graph contains a path from one vertex to another.
Many fundamental algorithms on graphs (e.g., finding shortest path, cycles, connected components, ) are applications of the graph search problem.
General Graph Search Problem
Input: Graph , and a starting vertex .
Goal: Identify the vertices in reachable from in .
For example, consider the following graph: (It's one graph with multiple connected components!)

The set of vertices reachable from is .