Question: In a graph represented by an adjacency list, what is the space complexity?
Options:
Correct Answer: O(V + E)
Solution:
The space complexity of a graph represented by an adjacency list is O(V + E), where V is the number of vertices and E is the number of edges.