Question: In Dijkstra\'s algorithm, what data structure is typically used to keep track of the shortest path estimates?
Options:
Correct Answer: Priority Queue
Solution:
A priority queue is used to keep track of the shortest path estimates in Dijkstra\'s algorithm, allowing efficient retrieval of the next vertex with the smallest distance.