戴克斯特拉算法
戴克斯特拉算法(英語:Dijkstra's algorithm),又稱迪杰斯特拉算法、Dijkstra算法[6],是由荷兰计算机科学家艾茲赫尔·戴克斯特拉在1956年发现的算法,并于3年后在期刊上发表[7][8][9]。戴克斯特拉算法使用类似廣度优先搜索的方法解决赋权图[9]的单源最短路径问题[10][1][2]。
戴克斯特拉算法 | |
---|---|
概况 | |
類別 | 搜索算法[1][2] 贪心算法[1] 动态规划[3] |
資料結構 | 图 堆/优先队列(算法优化)[1][4] |
复杂度 | |
最坏时间复杂度 | (使用斐波那契堆优化的戴克斯特拉算法)[5][4] |
空間複雜度 | (使用邻接表存储边的情况)[1] |
相关变量的定义 | |
代表图中边数,代表图中结点个数,为目前所有实际最短路径值不确定结点的集合,为目前所有实际最短路径值确定结点的集合,为到某点的最短路径估计,为到某点的最短路径实际值,为边集中边的最大权值。 |
该算法存在很多变体:戴克斯特拉的原始版本仅适用于找到两个顶点之间的最短路径[9],后来更常见的变体固定了一个顶点作为源结点然后找到该顶点到图中所有其它结点的最短路径,产生一个最短路径树[1]。
该算法解决了圖 上带权的单源最短路径问题[1][11]:196–206。具体来说,戴克斯特拉算法设置了一顶点集合,在集合中所有的顶点与源点之间的最终最短路径权值均已确定[1]。算法反复选择最短路径估计最小的点并将加入中[1]。该算法常用于路由算法或者作为其他图算法的一个子模块[12]。举例来说,如果图中的顶点表示城市,而边上的权重表示城市间开车行经的距离,该演算法可以用来找到两个城市之间的最短路径[8][2]。
描述
戴克斯特拉算法通過保留目前為止所找到的每個頂點 從 到 的最短路徑來工作[1][2]。初始時,原點 的路径权重被賦為 0 (即原点的实际最短路径=0)[1][2]。同時把所有其他頂點的路徑長度設為無窮大,即表示我們不知道任何通向這些頂點的路徑[1]。當算法結束時, 中儲存的便是從 到 的最短路徑,或者如果路徑不存在的話是無窮大[1]。
松弛操作是戴克斯特拉算法的基礎操作:如果存在一條從 到 的邊,那麼從 到 的一条新路径是將邊 添加到從 到 的路徑尾部來拓展一條從 到 的路径[1][9]。這條路徑的長度是 [1]。如果這個值比目前已知的 的值要小,那么可以用这个值來替代當前 中的值[1]。松弛邊的操作一直執行到所有的 都代表從 到 的最短路徑的长度值[1]。
算法維護兩個頂點集合 和 [1][9]。集合 保留所有已知实际最短路径值的頂點,而集合 則保留其他所有頂點[1][9]。集合 初始狀態為空,而後每一步都有一個頂點從 移動到 [1][9]。這個被選擇的頂點是 中擁有最小的 值的頂點[1][2]。當一個頂點 從 中轉移到了 中,算法對 的每条外接邊 進行松弛[1]。
《算法导论》中给出了以下伪代码[1]:该伪代码计算并保留图 中原点 到每一顶点 的最短距离 。其中,函数 将頂點集合 中有最小 值的頂點 从 中删除并返回 [1]。
1 function Dijkstra(G, w, s) 2 INITIALIZE-SINGLE-SOURCE(G, s) //实际上的操作是将每个除原点外的顶点的 置为无穷大, 3 4 // 是顶点 的一个优先队列,以顶点的最短路径估计排序 5 while( ) 6 do //选取 为 中最短路径估计最小的顶点 7 8 for each vertex v 9 do RELAX(u, v, w) //松弛成功的结点会被加入到队列中
如果我們只對在 和 之間尋找一條最短路徑的話,我們可以在第5或第6行添加條件如果滿足 的話終止程序[1][2]。
在肯尼·罗森所著的《离散数学及其应用》中给出了如下的另一份伪代码[2]:
1 procedure Dijkstra(G:边全为正权的图) 2 {G带有顶点 和若干边 } 3 for to n 4 5 6 7 while 8 begin 9 不属于 的 最小的一个顶点 10 11 for 所有不属于 的顶点 12 if then 13 end{ 从a到z的最短路长度}
時間複雜度
我們可以用大O符號將该算法的運行時間表示為邊數 和頂點數 的函數[1]。
对于任何基于顶点集 的实现,算法的运行时间是 ,其中 和 分别表示完成键的降序排列时间和从 中提取最小键值的时间[1]。
对于没有任何优化的戴克斯特拉算法,实际上等价于每次遍历了整个图的所有结点来找到Q中满足条件的元素(即寻找最小的頂點是 的),此外实际上还需要遍历所有的边一遍,因此算法的复杂度是 [2]。
對於邊數少於 的稀疏圖來說,可以用鄰接表來更有效的實現该算法[1]。
可以使用一個二叉堆或者斐波納契堆用作優先隊列來尋找最小的頂點( )以优化算法[14][15]。當用到二叉堆的時候,算法所需的時間為 [14],斐波納契堆能提高一些性能,讓算法運行時間達到 [4][15]。然而,使用斐波納契堆进行编程,有时会由于算法常数过大而导致速度没有显著提高[16]。
下面是一些戴克斯特拉算法经典实现的复杂度比较:
算法 | 最坏时间复杂度 | 发现者(按照论文发表时间从前向后排序) |
---|---|---|
使用鄰接表的戴克斯特拉算法 | 莱索雷克及格雷等人[17],艾兹赫尔·戴克斯特拉[9],明蒂[18],怀廷及希利尔[19] | |
使用二叉堆优化的戴克斯特拉算法 | 唐纳德·约翰逊[14] | |
使用斐波那契堆优化的戴克斯特拉算法 | 迈克尔·弗雷德曼及羅伯特·塔揚[4][15] | |
唐纳德·约翰逊[20],洛夫·卡尔松及帕特里西奥·波夫莱特[21] |
正确性证明
《算法导论》使用循环不变式(数学归纳法)给出了如下的一份证明[1]:
- 已知一带权图 ,其加权函数 的值非负,源点为 。对该图运行戴克斯特拉算法,对所有 有 。其中 表示u点的最短路径估计, 表示 到 点的最短路径。
- 证明:证明如下的循环不变式成立即可:在每次执行EXTRACT-MIN时,对每个顶点 ,有 成立即可。由于上界性质,在 加入了 之后,一旦有 ,则在后面的每次循环中都不会改变这个性质。
- 初始化:第一次循环前, ,因此循环不变式显然成立。
- 保持:实际上要证明每一轮循环中加入到 中的结点满足 。利用反证法,假设 是第一个不满足此条件的结点,考虑循环开始前的状况,首先 一定不等于 ,这是显然的。其次 一定有到 的路径,否则路径为无穷大。那么假设在 进入时,有最短路径 ,假设该路径上存在两个点 , 。 、 ,且x是y的前驱,路径 可以分解为 (此处 表示经过 这条路径,后同),其中路径 和路径 可以为空。由于 是第一个不满足 的,又因为 是满足该条件的,而且 一定已经被松弛过了,所以 是满足该条件的。
- 现在只需要推出矛盾,即可证明u不存在: 在 之前出现,而且图中所有权值非负,因此有 ,所以:
,但是由于 和 同时在 中,因此 ,因此必有 ,也就证明了 点不可能不满足该条件,上述假设为假,原命题得证。 - 终止:终止时, ,由于 ,因此 ,因此对所有 有 。
起源与历史
从鹿特丹到格罗宁根的最短路径是什么?实际上,这就是对于任意两座城市之间的最短路问题。解决这个问题实际上大概只花了我20分钟:一天早上,我和我的未婚妻在阿姆斯特丹购物,累了,我们便坐在咖啡馆的露台上喝咖啡,然后我就试了一下能否用一个算法解决最短路问题。正如我所说,这是一个20分钟的发现。不过实际上,我在3年后的1959年才把这个算法发表在论文上。即使现在来看这篇论文的可读性也非常高,这个算法之所以如此优雅,其中一个原因就是我没用笔纸就设计了它。后来我才知道,没用笔纸设计的优点之一是你不得不避免所有可避免的复杂问题。令我惊讶的是,这个算法最终成为我成名的基石之一。
——艾兹赫尔·戴克斯特拉在2001年的采访中提到戴克斯特拉算法的发现历程[8]
戴克斯特拉1956年在荷兰数学和计算机科学研究学会担任程序员时为了展示新型计算机ARMAC的功能曾思考过最短路径问题的解法[22]。他的目标是让不去实际计算的人也能理解这个问题和解决的方法,于是他在发现了这个算法之后在ARMAC上做了简单实验[8]。1959年,他正式将此算法发表在期刊上,该算法也成为了戴克斯特拉成名的基石之一[8][9]。
相关应用
链路状态路由协议中需要计算最短路时常常要用到该算法,该算法在開放最短路徑優先和中间系统到中间系统协议中的相关应用是其在網絡路由中的典型實現[12]。
戴克斯特拉算法及其改进算法应用广泛,尤其是在寻路、交通、规划中[23][24][25][26]。
如果有已知信息可用來估計某一點到目標點的距離,則可改用A*搜尋算法,以減小最短路徑的搜索範圍,戴克斯特拉算法本身也可以看作是A*搜索算法的一个特例[27][28]。
戴克斯特拉算法本身采用了与Prim算法类似的贪心策略[9][29][30][31]。快速行进算法与戴克斯特拉算法同样有相似之处[32]。
参考源程序
以下是该算法使用堆优化的一个C++实现参考[33]:
// 無向圖
#include <bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
// iPair ==> Integer Pair(整数对)
typedef pair<int, int> iPair;
// 加边
void addEdge(vector<pair<int, int>> adj[], int u, int v, int wt)
{
adj[u].push_back(make_pair(v, wt));
adj[v].push_back(make_pair(u, wt));
}
// 计算最短路
void shortestPath(vector<pair<int, int>> adj[], int V, int src)
{
// 关于stl中的优先队列如何实现,参考下方网址:
// http://geeksquiz.com/implement-min-heap-using-stl/
priority_queue<iPair, vector<iPair>, greater<iPair>> pq;
// 距离置为正无穷大
vector<int> dist(V, INF);
vector<bool> visited(V, false);
// 插入源点,距离为0
pq.push(make_pair(0, src));
dist[src] = 0;
/* 循环直到优先队列为空 */
while (!pq.empty())
{
// 每次从优先队列中取出顶点事实上是这一轮最短路径权值确定的点
int u = pq.top().second;
pq.pop();
if (visited[u])
{
continue;
}
visited[u] = true;
// 遍历所有边
for (auto x : adj[u])
{
// 得到顶点边号以及边权
int v = x.first;
int weight = x.second;
// 可以松弛
if (dist[v] > dist[u] + weight)
{
// 松弛
dist[v] = dist[u] + weight;
pq.push(make_pair(dist[v], v));
}
}
}
// 打印最短路
printf("Vertex Distance from Source\n");
for (int i = 0; i < V; ++i)
printf("%d \t\t %d\n", i, dist[i]);
}
int main()
{
int V = 9;
vector<iPair> adj[V];
addEdge(adj, 0, 1, 4);
addEdge(adj, 0, 7, 8);
addEdge(adj, 1, 2, 8);
addEdge(adj, 1, 7, 11);
addEdge(adj, 2, 3, 7);
addEdge(adj, 2, 8, 2);
addEdge(adj, 2, 5, 4);
addEdge(adj, 3, 4, 9);
addEdge(adj, 3, 5, 14);
addEdge(adj, 4, 5, 10);
addEdge(adj, 5, 6, 2);
addEdge(adj, 6, 7, 1);
addEdge(adj, 6, 8, 6);
addEdge(adj, 7, 8, 7);
shortestPath(adj, V, 0);
return 0;
}
以下是该算法Python的一个实现:
import sys
max = sys.maxsize
vertices_number = 6
adjacency_matrix = [
[0, 1, 10, -1, -1, 2],
[10, 0, 1, -1, -1, -1],
[1, 10, 0, -1, -1, -1],
[-1, -1, 2, 0, 1, 10],
[-1, -1, -1, 10, 0, 1],
[-1, -1, -1, 1, 10, 0]]
start = []
dest = ["2", "5"]
key = []
def init_keys(s: int):
global key
key = [ max ] * vertices_number
key[s] = 0
def dijkstra(from_vertex, dest_vertex):
fid = int(from_vertex) - 1
tid = int(dest_vertex) - 1
init_keys(fid)
rel = [fid]
min_vertex = fid
hop_path = {}
while len(rel) <= vertices_number and min_vertex != tid:
for i in range(vertices_number):
if i != min_vertex and i not in rel and \
adjacency_matrix[min_vertex][i] > 0 \
and key[i] > key[min_vertex] + adjacency_matrix[min_vertex][i]:
key[i] = key[min_vertex] + adjacency_matrix[min_vertex][i]
hop_path.update({i + 1: {"from": min_vertex + 1, "cost": adjacency_matrix[min_vertex][i]}})
if min_vertex not in rel:
rel.append(min_vertex)
min_vertex = tid
for i in range(vertices_number):
if i not in rel and key[i] < key[min_vertex]:
min_vertex = i
if len(hop_path) == 0 or int(dest_vertex) not in hop_path:
return -1, -1
else:
next_hop = int(dest_vertex)
path_str = dest_vertex
while hop_path[next_hop]["from"] != int(from_vertex):
cost = hop_path[next_hop]["cost"]
next_hop = hop_path[next_hop]["from"]
path_str = "{} -({})-> {}".format(str(next_hop), cost ,path_str)
path_str = "{} -({})-> {}".format(str(hop_path[next_hop]["from"]), hop_path[next_hop]["cost"], path_str)
return key[tid], path_str
def find_shortest_router():
for s in start:
print("Forwarding Table for {}".format(s))
print("{:>10} {:>10} {}".format("To", "Cost", "Path"))
for d in dest:
c, n = dijkstra(s, d)
print("{:>10} {:>10} {}".format(d, c, n))
def main():
for i in range(1, vertices_number + 1):
if str(i) not in dest:
start.append(str(i))
find_shortest_router()
if __name__ == '__main__':
main()
参见
參考
参考文献
- ^ 1.00 1.01 1.02 1.03 1.04 1.05 1.06 1.07 1.08 1.09 1.10 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.18 1.19 1.20 1.21 1.22 1.23 1.24 1.25 1.26 1.27 1.28 1.29 Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford. Section 24.3: Dijkstra's algorithm. Introduction to Algorithms Second. MIT Press and McGraw–Hill. 2001: 595–601. ISBN 0-262-03293-7.
- ^ 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 Rosen, Kenneth H. Discrete Mathematics and Its Applications. McGraw-Hill College. 2002. ISBN 0-07-293033-0.
- ^ 有争议,见:Moshe Sniedovich. Dijkstra's algorithm revisited: the dynamic programming connexion. Control and Cybernetics. 2006, 35: 599–620 [2020-03-04]. (原始内容存档于2020-03-04).等
- ^ 4.0 4.1 4.2 4.3 Fredman, Michael Lawrence; Tarjan, Robert E. Fibonacci heaps and their uses in improved network optimization algorithms. 25th Annual Symposium on Foundations of Computer Science. IEEE: 338–346. 1984. doi:10.1109/SFCS.1984.715934.
- ^ Andrew V. Goldberg; Robert E. Tarjan. Expected performance of Dijkstra’s shortest path algorithm. NEC Research Institute Report. 1996年 [2019-12-12]. (原始内容存档于2021-11-22).
- ^ 乐阳、龚健雅. Dijkstra最短路径算法的一种高效率实现. 《科学技术创新》. 2020, (17): 75–77 [2020-06-30]. (原始内容存档于2021-02-13).
- ^ Richards, Hamilton. Edsger Wybe Dijkstra. A.M. Turing Award. Association for Computing Machinery. [2017-10-16]. (原始内容存档于2017-10-21).
At the Mathematical Centre a major project was building the ARMAC computer. For its official inauguration in 1956, Dijkstra devised a program to solve a problem interesting to a nontechnical audience: Given a network of roads connecting cities, what is the shortest route between two designated cities?
- ^ 8.0 8.1 8.2 8.3 8.4 Frana, Phil. An Interview with Edsger W. Dijkstra. Communications of the ACM. August 2010, 53 (8): 41–47. doi:10.1145/1787234.1787249.
- ^ 9.00 9.01 9.02 9.03 9.04 9.05 9.06 9.07 9.08 9.09 9.10 Dijkstra, E. W. A note on two problems in connexion with graphs (PDF). Numerische Mathematik. 1959, 1: 269–271 [2020-01-27]. doi:10.1007/BF01386390. (原始内容存档 (PDF)于2020-01-23).
- ^ 10.0 10.1 Felner, Ariel. Position Paper: Dijkstra's Algorithm versus Uniform Cost Search or a Case Against Dijkstra's Algorithm. Proc. 4th Int'l Symp. on Combinatorial Search. 2011 [2020-02-18]. (原始内容存档于2020-02-18).
- ^ Mehlhorn, Kurt; Sanders, Peter. Chapter 10. Shortest Paths (PDF). Algorithms and Data Structures: The Basic Toolbox. Springer. 2008 [2020-02-14]. ISBN 978-3-540-77977-3. doi:10.1007/978-3-540-77978-0. (原始内容存档 (PDF)于2021-02-24).
- ^ 12.0 12.1 H. Ishikawa, S. Shimizu, Y. Arakawa, N. Yamanaka, K. Shiba. New Parallel Shortest Path Searching Algorithm based on Dynamically Reconfigurable Processor DAPDNA-2. IEEE. 13 August 2007 [2020-03-21]. doi:10.1109/ICC.2007.332. (原始内容存档于2020-12-18).
- ^ Yefim, Dinitz; Rotem, Itzhak. Hybrid Bellman–Ford–Dijkstra algorithm,. Journal of Discrete Algorithms. 2017, 42: 35–44. doi:10.1016/j.jda.2017.01.001.
- ^ 14.0 14.1 14.2 Johnson, Donald B. Efficient algorithms for shortest paths in sparse networks. Journal of the ACM. 1977, 24 (1): 1–13. doi:10.1145/321992.321993.
- ^ 15.0 15.1 15.2 Fredman, Michael Lawrence; Tarjan, Robert E. Fibonacci heaps and their uses in improved network optimization algorithms. Journal of the Association for Computing Machinery. 1987, 34 (3): 596–615 [2018-04-03]. doi:10.1145/28869.28874. (原始内容存档于2006-04-28).
- ^ Skiena, Steven. The Algorithm Design Manual (PDF) 2. Springer. 2008-07-26: 212 [2015-04-11]. ISBN 978-0073523408. doi:10.1007/978-1-84800-070-4. (原始内容 (PDF)存档于2015-06-09) (英语).
- ^ Leyzorek, M.; Gray, R. S.; Johnson, A. A.; Ladew, W. C.; Meaker, Jr., S. R.; Petry, R. M.; Seitz, R. N. Investigation of Model Techniques — First Annual Report — 6 June 1956 — 1 July 1957 — A Study of Model Techniques for Communication Systems. Cleveland, Ohio: Case Institute of Technology. 1957.
- ^ 见Pollack, Maurice; Wiebenson, Walter. Solution of the Shortest-Route Problem—A Review. Oper. Res. March–April 1960, 8 (2): 224–230. doi:10.1287/opre.8.2.224. Attributes Dijkstra's algorithm to Minty ("private communication") on p.225.
- ^ Whiting, P. D.; Hillier, J. A. A Method for Finding the Shortest Route through a Road Network. Operational Research Quarterly. March–June 1960, 11 (1/2): 37–40. doi:10.1057/jors.1960.32.
- ^ Johnson, Donald B. A priority queue in which initialization and queue operations take O(log log D) time. Mathematical Systems Theory. December 1981, 15 (1): 295–309. MR 0683047. doi:10.1007/BF01786986.
- ^ Karlsson, Rolf G.; Poblete, Patricio V. An O(m log log D) algorithm for shortest paths. Discrete Applied Mathematics. 1983, 6 (1): 91–93. MR 0700028. doi:10.1016/0166-218X(83)90104-X.
- ^ ARMAC. Unsung Heroes in Dutch Computing History. 2007. (原始内容存档于2013-11-13).
- ^ Sven Peyer; Dieter Rautenbach,Jens Vygen. A generalization of Dijkstra's shortest path algorithm with applications to VLSI routing. Journal of Discrete Algorithms. 2007, 7 (4): 377–390. doi:10.1016/j.jda.2007.08.003.
- ^ Ismail Rakip Karas,Sait Demir. Dijkstra algorithm interactive training software development for network analysis applications in GIS (PDF). Energy Education Science and Technology Part A: Energy Science and Research. 2011, 28: 445–452 [2020-03-04]. (原始内容存档 (PDF)于2020-03-04).
- ^ Dean Djokic,David R. Maidment. Application of GIS Network Routines for Water Flow and Transport. Journal of Water Resources Planning and Management. 1993, 119 (2). doi:10.1061/(ASCE)0733-9496(1993)119:2(229).
- ^ 江琦浩. 迪杰斯特拉算法在企业成本控制研究中的应用. 中国商贸. 2012, (03X) [2020-12-24]. (原始内容存档于2021-02-13).
- ^ De Smith, Michael John; Goodchild, Michael F.; Longley, Paul, Geospatial Analysis: A Comprehensive Guide to Principles, Techniques and Software Tools, Troubadour Publishing Ltd: 344, 2007 [2020-03-04], ISBN 9781905886609, (原始内容存档于2017-02-27).
- ^ Hetland, Magnus Lie, Python Algorithms: Mastering Basic Algorithms in the Python Language, Apress: 214, 2010 [2020-03-04], ISBN 9781430232377, (原始内容存档于2017-02-28).
- ^ Tarjan, Robert Endre, Data Structures and Network Algorithms, CBMS_NSF Regional Conference Series in Applied Mathematics 44, Society for Industrial and Applied Mathematics: 75, 1983,
The third classical minimum spanning tree algorithm was discovered by Jarník and rediscovered by Prim and Dikstra; it is commonly known as Prim's algorithm.
- ^ Prim, R.C. Shortest connection networks and some generalizations (PDF). Bell System Technical Journal. 1957, 36 (6): 1389–1401 [18 July 2017]. Bibcode:1957BSTJ...36.1389P. doi:10.1002/j.1538-7305.1957.tb01515.x. (原始内容 (PDF)存档于18 July 2017).
- ^ V. Jarník: O jistém problému minimálním [About a certain minimal problem], Práce Moravské Přírodovědecké Společnosti, 6, 1930, pp. 57–63. (in Czech)
- ^ Danielsson, Per-Erik; Lin, Qingfen. A Modified Fast Marching Method. Image Analysis. 24 June 2003: 1154–1161 [2020-03-25]. (原始内容存档于2021-02-13).
- ^ geeksforgeeks. Dijkstra’s Shortest Path Algorithm using priority_queue of STL. geeksforgeeks. [2020-05-11]. (原始内容存档于2021-02-13).
扩展阅读
- Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford. Section 24.3: Dijkstra's algorithm. Introduction to Algorithms second. MIT Press、S&P Global. 2001: 595–601. ISBN 0-262-03293-7.
- Dial, Robert B. Algorithm 360: Shortest-path forest with topological ordering [H]. CACM. 1969, 12 (11): 632–633. doi:10.1145/363269.363610.
- Zhan, F. Benjamin; Noon, Charles E. Shortest Path Algorithms: An Evaluation Using Real Road Networks. Transportation Science. February 1998, 32 (1): 65–73. doi:10.1287/trsc.32.1.65.
- Knuth, D.E. A Generalization of Dijkstra's Algorithm. Information Processing Letters. 1977, 6 (1): 1–5. doi:10.1016/0020-0190(77)90002-3.
- Ahuja, Ravindra K.; Mehlhorn, Kurt; Orlin, James B.; Tarjan, Robert E. Faster Algorithms for the Shortest Path Problem. Journal of Association for Computing Machinery (ACM). April 1990, 37 (2): 213–223. doi:10.1145/77600.77615.
- Raman, Rajeev. Recent results on the single-source shortest paths problem. SIGACT News. 1997, 28 (2): 81–87. doi:10.1145/261342.261352.
- Thorup, Mikkel. On RAM priority Queues. SIAM Journal on Computing. 2000, 30 (1): 86–109. doi:10.1137/S0097539795288246.
- Thorup, Mikkel. Undirected single-source shortest paths with positive integer weights in linear time. journal of the ACM. 1999, 46 (3): 362–394 [2017-11-01]. doi:10.1145/316542.316548. (原始内容存档于2017-09-21).
- ZHANG Lin-guang,FANG Jin-yun,SHEN Pai-wei. An Improved Dijkstra Algorithm Based on Pairing Heap. Journal of Image and Graphics. 2007-05.
外部連結
- 迪科斯彻算法分解演示视频(优酷) (页面存档备份,存于互联网档案馆)
- Animation of Dijkstra's algorithm (页面存档备份,存于互联网档案馆)
- The Boost Graph Library (BGL) (页面存档备份,存于互联网档案馆)
- Interactive Implementation of Dijkstra's Algorithm (页面存档备份,存于互联网档案馆)
- Shortest Path Problem: Dijkstra's Algorithm
- Dijkstra算法使用TDD的一个实现 (页面存档备份,存于互联网档案馆)
- Graphical explanation of Dijkstra's algorithm step-by-step on an example (页面存档备份,存于互联网档案馆)