Question: If a graph has V vertices and E edges, what is the space complexity of Dijkstra\'s algorithm using an adjacency list?
Options:
Correct Answer: O(V + E)
Solution:
The space complexity of Dijkstra\'s algorithm using an adjacency list is O(V + E) due to the storage of vertices and edges.