Question: What type of graph representation is most efficient for Dijkstra\'s algorithm?
Options:
Correct Answer: Adjacency list
Solution:
An adjacency list is generally more efficient for Dijkstra\'s algorithm, especially for sparse graphs, as it allows for quicker access to neighboring nodes.