Detailed description
Add Dijkstra's shortest path algorithm implementation using a min-heap priority queue for optimal O((V+E)logV) performance.
Context
This is a fundamental graph algorithm essential for competitive programming and real-world applications like GPS navigation.
Possible implementation
No response
Additional information
No response