Question: 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), where V is the number of vertices and E is the number of edges.