Recursive Depth First Search (122A)
Breadth First Search (122A)
Both DFS and BFS are $O(V + E)$ because they visit all vertices and edges exactly once.
Go to next:
Minimum Spanning Trees