|
|
|
|
|
by lambo4bkfast
1236 days ago
|
|
From the paper: "Two textbook algorithms for SSSP are Bellman-Ford and Dijkstra’s algorithm. Dijkstra’s algorithm is near-linear time (O(m + n log n) time)" This is incorrect; Dijkstra's Algorithm using a binary priority queue has: O((m + n)log n) time |
|
https://en.m.wikipedia.org/wiki/Dijkstra%27s_algorithm#CITER...