戴克斯特拉算法
戴克斯特拉算法 (英語:Dijkstra's algorithm ),又稱迪杰斯特拉算法 、Dijkstra算法 [ 6] ,是由荷兰 计算机科学家艾茲赫尔·戴克斯特拉 在1956年发现的算法,并于3年后在期刊 上发表[ 7] [ 8] [ 9] 。戴克斯特拉算法使用类似廣度优先搜索 的方法解决赋权图[ 9] 的单源最短路径问题 [ 10] [ 1] [ 2] 。
该算法存在很多变体:戴克斯特拉的原始版本仅适用于找到两个顶点之间的最短路径[ 9] ,后来更常见的变体固定了一个顶点作为源结点然后找到该顶点到图中所有其它结点的最短路径,产生一个最短路径树 [ 1] 。
该算法解决了圖
G
=
⟨ ⟨ -->
V
,
E
⟩ ⟩ -->
{\displaystyle G=\langle V,E\rangle }
上带权的单源最短路径问题[ 1] [ 11] :196–206 。具体来说,戴克斯特拉算法设置了一顶点集合
S
{\displaystyle S}
,在集合
S
{\displaystyle S}
中所有的顶点与源点
s
{\displaystyle s}
之间的最终最短路径权值均已确定[ 1] 。算法反复选择最短路径估计最小的点
u
∈ ∈ -->
V
− − -->
S
{\displaystyle u\in {V-S}}
并将
u
{\displaystyle u}
加入
S
{\displaystyle S}
中[ 1] 。该算法常用于路由 算法或者作为其他图算法的一个子模块[ 12] 。举例来说,如果图中的顶点表示城市,而边上的权重表示城市间开车行经的距离,该演算法可以用来找到两个城市之间的最短路径[ 8] [ 2] 。
应当注意,绝大多数的戴克斯特拉算法不能有效处理带有负权边的图[ 1] [ 13] 。
戴克斯特拉算法在计算机科学的人工智能 等领域也被称为均一开销搜索,并被认为是最良优先搜索 的一个特例[ 10] 。
描述
上圖為戴克斯特拉演算法 應用示意圖。起點以左下角的紅點 ,目標是右上角的綠點 ,中間灰色的倒L型為障礙物 。藍色空圈表示"暫定" ,用以搜索下一步;已經填充顏色的表示探訪過,圖中顏色以紅到綠,越綠表示離起點越遠。所有節點都被均勻探索。
戴克斯特拉算法通過保留目前為止所找到的每個頂點
v
∈ ∈ -->
V
{\displaystyle v\in V}
從
s
{\displaystyle s}
到
v
{\displaystyle v}
的最短路徑來工作[ 1] [ 2] 。初始時,原點
s
{\displaystyle s}
的路径权重被賦為 0 (即原点的实际最短路径=0)[ 1] [ 2] 。同時把所有其他頂點的路徑長度設為無窮大,即表示我們不知道任何通向這些頂點的路徑[ 1] 。當算法結束時,
d
[
v
]
{\displaystyle d[v]}
中儲存的便是從
s
{\displaystyle s}
到
v
{\displaystyle v}
的最短路徑,或者如果路徑不存在的話是無窮大[ 1] 。
松弛操作是戴克斯特拉算法的基礎操作:如果存在一條從
u
{\displaystyle u}
到
v
{\displaystyle v}
的邊,那麼從
s
{\displaystyle s}
到
v
{\displaystyle v}
的一条新路径是將邊
w
(
u
,
v
)
∈ ∈ -->
E
{\displaystyle w(u,v)\in E}
添加到從
s
{\displaystyle s}
到
u
{\displaystyle u}
的路徑尾部來拓展一條從
s
{\displaystyle s}
到
v
{\displaystyle v}
的路径[ 1] [ 9] 。這條路徑的長度是
d
[
u
]
+
w
(
u
,
v
)
{\displaystyle d[u]+w(u,v)}
[ 1] 。如果這個值比目前已知的
d
[
v
]
{\displaystyle d[v]}
的值要小,那么可以用这个值來替代當前
d
[
v
]
{\displaystyle d[v]}
中的值[ 1] 。松弛邊的操作一直執行到所有的
d
[
v
]
{\displaystyle d[v]}
都代表從
s
{\displaystyle s}
到
v
{\displaystyle v}
的最短路徑的长度值[ 1] 。
算法維護兩個頂點集合
S
{\displaystyle S}
和
Q
{\displaystyle Q}
[ 1] [ 9] 。集合
S
{\displaystyle S}
保留所有已知实际最短路径值的頂點,而集合
Q
{\displaystyle Q}
則保留其他所有頂點[ 1] [ 9] 。集合
S
{\displaystyle S}
初始狀態為空,而後每一步都有一個頂點從
Q
{\displaystyle Q}
移動到
S
{\displaystyle S}
[ 1] [ 9] 。這個被選擇的頂點是
Q
{\displaystyle Q}
中擁有最小的
d
[
u
]
{\displaystyle d[u]}
值的頂點[ 1] [ 2] 。當一個頂點
u
{\displaystyle u}
從
Q
{\displaystyle Q}
中轉移到了
S
{\displaystyle S}
中,算法對
u
{\displaystyle u}
的每条外接邊
w
(
u
,
v
)
{\displaystyle w(u,v)}
進行松弛[ 1] 。
《算法导论 》中给出了以下伪代码[ 1] :该伪代码计算并保留图
G
{\displaystyle G}
中原点
s
{\displaystyle s}
到每一顶点
v
{\displaystyle v}
的最短距离
d
[
v
]
{\displaystyle d[v]}
。其中,函数
E
x
t
r
a
c
t
− − -->
M
i
n
(
Q
)
{\displaystyle Extract-Min(Q)}
将頂點集合
Q
{\displaystyle Q}
中有最小
d
[
u
]
{\displaystyle d[u]}
值的頂點
u
{\displaystyle u}
从
Q
{\displaystyle Q}
中删除并返回
u
{\displaystyle u}
[ 1] 。
1 function Dijkstra(G, w, s)
2 INITIALIZE-SINGLE-SOURCE(G, s) //实际上的操作是将每个除原点外的顶点的
d
[
v
]
{\displaystyle d[v]}
置为无穷大,
d
[
s
]
=
0
{\displaystyle d[s]=0}
3
S
← ← -->
∅ ∅ -->
{\displaystyle S\leftarrow \emptyset }
4
Q
← ← -->
s
{\displaystyle Q\leftarrow s}
//
Q
{\displaystyle Q}
是顶点
V
{\displaystyle V}
的一个优先队列,以顶点的最短路径估计排序
5 while(
Q
≠
∅ ∅ -->
{\displaystyle Q\not =\emptyset }
)
6 do
u
← ← -->
E
X
T
R
A
C
T
− − -->
M
I
N
(
Q
)
{\displaystyle u\leftarrow EXTRACT-MIN(Q)}
//选取
u
{\displaystyle u}
为
Q
{\displaystyle Q}
中最短路径估计最小的顶点
7
S
← ← -->
S
∪ ∪ -->
u
{\displaystyle S\leftarrow S\cup u}
8 for each vertex v
∈ ∈ -->
A
d
j
[
u
]
{\displaystyle \in Adj[u]}
9 do RELAX(u, v, w) //松弛成功的结点会被加入到队列中
如果我們只對在
s
{\displaystyle s}
和
t
{\displaystyle t}
之間尋找一條最短路徑的話,我們可以在第5或第6行添加條件如果滿足
u
=
t
{\displaystyle u=t}
的話終止程序[ 1] [ 2] 。
在肯尼·罗森所著的《离散数学及其应用》中给出了如下的另一份伪代码[ 2] :
1 procedure Dijkstra(G:边全为正权的图)
2 {G带有顶点
a
=
v
0
,
v
1
,
v
2
.
.
.
{\displaystyle a=v_{0},v_{1},v_{2}...}
和若干边
w
(
v
i
,
v
j
)
{\displaystyle w(v_{i},v_{j})}
}
3 for
i
:=
1
{\displaystyle i:=1}
to n
4
D
(
v
i
)
:=
∞ ∞ -->
{\displaystyle D(v_{i}):=\infty }
5
D
(
a
)
:=
0
{\displaystyle D(a):=0}
6
S
:=
∅ ∅ -->
{\displaystyle S:=\emptyset }
7 while
z
∉ ∉ -->
S
{\displaystyle z\notin S}
8 begin
9
u
:=
{\displaystyle u:=}
不属于
S
{\displaystyle S}
的
D
(
u
)
{\displaystyle D(u)}
最小的一个顶点
10
S
:=
S
∪ ∪ -->
{
u
}
{\displaystyle S:=S\cup \{u\}}
11 for 所有不属于
S
{\displaystyle S}
的顶点
v
{\displaystyle v}
12 if
D
(
u
)
+
w
(
u
,
v
)
<
D
(
v
)
{\displaystyle D(u)+w(u,v)<D(v)}
then
D
(
v
)
:=
D
(
u
)
+
w
(
u
,
v
)
{\displaystyle D(v):=D(u)+w(u,v)}
13 end{
D
(
z
)
=
{\displaystyle D(z)=}
从a到z的最短路长度}
在该 算法演示页面 (页面存档备份 ,存于互联网档案馆 ),可以自定义节点,边的权重等信息,然后观察算法每一步的执行过程。
時間複雜度
我們可以用大O符號 將该算法的運行時間表示為邊數
|
E
|
{\displaystyle |E|}
和頂點數
|
V
|
{\displaystyle |V|}
的函數[ 1] 。
对于任何基于顶点集
Q
{\displaystyle Q}
的实现,算法的运行时间是
O
(
|
E
|
⋅ ⋅ -->
d
k
Q
+
|
V
|
⋅ ⋅ -->
e
m
Q
)
{\displaystyle O(|E|\cdot dk_{Q}+|V|\cdot em_{Q})}
,其中
d
k
Q
{\displaystyle dk_{Q}}
和
e
m
Q
{\displaystyle em_{Q}}
分别表示完成键的降序排列时间和从
Q
{\displaystyle Q}
中提取最小键值的时间[ 1] 。
对于没有任何优化的戴克斯特拉算法,实际上等价于每次遍历了整个图的所有结点来找到Q中满足条件的元素(即寻找最小的頂點是
O
(
|
V
|
)
{\displaystyle O(|V|)}
的),此外实际上还需要遍历所有的边一遍,因此算法的复杂度是
O
(
|
V
|
2
+
|
E
|
)
{\displaystyle O(|V|^{2}+|E|)}
[ 2] 。
對於邊數少於
|
V
|
2
{\displaystyle |V|^{2}}
的稀疏圖來說,可以用鄰接表 來更有效的實現该算法[ 1] 。
可以使用一個二叉堆 或者斐波納契堆 用作優先隊列 來尋找最小的頂點(
E
x
t
r
a
c
t
− − -->
M
i
n
{\displaystyle Extract-Min}
)以优化算法[ 14] [ 15] 。當用到二叉堆 的時候,算法所需的時間為
O
(
(
|
E
|
+
|
V
|
)
log
-->
|
V
|
)
{\displaystyle O((|E|+|V|)\log |V|)}
[ 14] ,斐波納契堆 能提高一些性能,讓算法運行時間達到
O
(
|
E
|
+
|
V
|
log
-->
|
V
|
)
{\displaystyle O(|E|+|V|\log |V|)}
[ 4] [ 15] 。然而,使用斐波納契堆 进行编程,有时会由于算法常数过大而导致速度没有显著提高[ 16] 。
下面是一些戴克斯特拉算法经典实现的复杂度比较:
算法
最坏时间复杂度
发现者(按照论文发表时间从前向后排序)
使用鄰接表的戴克斯特拉算法
O
(
|
V
|
2
)
{\displaystyle O(|V|^{2})}
莱索雷克及格雷等人[ 17] ,艾兹赫尔·戴克斯特拉 [ 9] ,明蒂[ 18] ,怀廷及希利尔[ 19]
使用二叉堆 优化的戴克斯特拉算法
O
(
(
|
E
|
+
|
V
|
)
log
-->
|
V
|
)
{\displaystyle O((|E|+|V|)\log |V|)}
唐纳德·约翰逊 [ 14]
使用斐波那契堆 优化的戴克斯特拉算法
O
(
|
E
|
+
|
V
|
log
-->
|
V
|
)
{\displaystyle O(|E|+|V|\log |V|)}
迈克尔·弗雷德曼及羅伯特·塔揚 [ 4] [ 15]
O
(
|
E
|
log
-->
log
-->
|
L
|
)
{\displaystyle O(|E|\log \log |L|)}
唐纳德·约翰逊[ 20] ,洛夫·卡尔松及帕特里西奥·波夫莱特[ 21]
正确性证明
艾兹赫尔·戴克斯特拉 ,戴克斯特拉算法的发现者
戴克斯特拉 本人在他的论文中给出了一份简单的证明[ 9] 。
《算法导论 》使用循环不变式(数学归纳法 )给出了如下的一份证明[ 1] :
已知一带权图
G
=<
V
,
E
>
{\displaystyle G=<V,E>}
,其加权函数
w
{\displaystyle w}
的值非负,源点为
s
{\displaystyle s}
。对该图运行戴克斯特拉算法,对所有
u
∈ ∈ -->
V
{\displaystyle u\in V}
有
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
。其中
d
[
u
]
{\displaystyle d[u]}
表示u点的最短路径估计,
δ δ -->
(
s
,
u
)
{\displaystyle \delta (s,u)}
表示
s
{\displaystyle s}
到
u
{\displaystyle u}
点的最短路径。
证明:证明如下的循环不变式成立即可:在每次执行EXTRACT-MIN时,对每个顶点
u
∈ ∈ -->
S
{\displaystyle u\in S}
,有
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
成立即可。由于上界性质,在
u
{\displaystyle u}
加入了
S
{\displaystyle S}
之后,一旦有
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
,则在后面的每次循环中都不会改变这个性质。
初始化:第一次循环前,
S
=
∅ ∅ -->
{\displaystyle S=\emptyset }
,因此循环不变式显然成立。
保持:实际上要证明每一轮循环中加入到
S
{\displaystyle S}
中的结点满足
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
。利用反证法,假设
u
{\displaystyle u}
是第一个不满足此条件的结点,考虑循环开始前的状况,首先
u
{\displaystyle u}
一定不等于
s
{\displaystyle s}
,这是显然的。其次
s
{\displaystyle s}
一定有到
u
{\displaystyle u}
的路径,否则路径为无穷大。那么假设在
u
{\displaystyle u}
进入时,有最短路径
p
=
s
− − -->
>
u
{\displaystyle p=s->u}
,假设该路径上存在两个点
x
{\displaystyle x}
,
y
{\displaystyle y}
。
y
∈ ∈ -->
V
− − -->
S
{\displaystyle y\in V-S}
、
x
∈ ∈ -->
S
{\displaystyle x\in S}
,且x是y的前驱,路径
p
{\displaystyle p}
可以分解为
s
− − -->
p
1
− − -->
>
x
− − -->
>
y
− − -->
p
2
− − -->
>
u
{\displaystyle s-p_{1}->x->y-p_{2}->u}
(此处
− − -->
p
1
− − -->
>
{\displaystyle -p_{1}->}
表示经过
p
1
{\displaystyle p_{1}}
这条路径,后同),其中路径
p
1
{\displaystyle p_{1}}
和路径
p
2
{\displaystyle p_{2}}
可以为空。由于
u
{\displaystyle u}
是第一个不满足
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
的,又因为
x
{\displaystyle x}
是满足该条件的,而且
(
x
,
y
)
{\displaystyle (x,y)}
一定已经被松弛过了,所以
y
{\displaystyle y}
是满足该条件的。
现在只需要推出矛盾,即可证明u不存在:
y
{\displaystyle y}
在
u
{\displaystyle u}
之前出现,而且图中所有权值非负,因此有
δ δ -->
(
s
,
y
)
≤ ≤ -->
δ δ -->
(
s
,
u
)
{\displaystyle \delta (s,y)\leq \delta (s,u)}
,所以:
d
[
y
]
≤ ≤ -->
δ δ -->
(
s
,
y
)
≤ ≤ -->
δ δ -->
(
s
,
u
)
≤ ≤ -->
d
[
u
]
{\displaystyle d[y]\leq \delta (s,y)\leq \delta (s,u)\leq d[u]}
,但是由于
u
{\displaystyle u}
和
y
{\displaystyle y}
同时在
V
− − -->
S
{\displaystyle V-S}
中,因此
d
[
u
]
≤ ≤ -->
d
[
y
]
{\displaystyle d[u]\leq d[y]}
,因此必有
d
[
y
]
=
δ δ -->
(
s
,
y
)
=
δ δ -->
(
s
,
u
)
=
d
[
u
]
{\displaystyle d[y]=\delta (s,y)=\delta (s,u)=d[u]}
,也就证明了
u
{\displaystyle u}
点不可能不满足该条件,上述假设为假,原命题得证。
终止:终止时,
Q
=
∅ ∅ -->
{\displaystyle Q=\emptyset }
,由于
Q
=
V
− − -->
S
{\displaystyle Q=V-S}
,因此
V
=
S
{\displaystyle V=S}
,因此对所有
u
∈ ∈ -->
V
{\displaystyle u\in V}
有
d
[
u
]
=
δ δ -->
(
s
,
u
)
{\displaystyle d[u]=\delta (s,u)}
。
起源与历史
从鹿特丹 到格罗宁根 的最短路径是什么?实际上,这就是对于任意两座城市之间的最短路问题 。解决这个问题实际上大概只花了我20分钟:一天早上,我和我的未婚妻在阿姆斯特丹购物,累了,我们便坐在咖啡馆的露台上喝咖啡,然后我就试了一下能否用一个算法解决最短路问题。正如我所说,这是一个20分钟的发现。不过实际上,我在3年后的1959年才把这个算法发表在论文上。即使现在来看这篇论文的可读性也非常高,这个算法之所以如此优雅,其中一个原因就是我没用笔纸就设计了它。后来我才知道,没用笔纸设计的优点之一是你不得不避免所有可避免的复杂问题。令我惊讶的是,这个算法最终成为我成名的基石之一。
——艾兹赫尔·戴克斯特拉在2001年的采访中提到戴克斯特拉算法的发现历程[ 8]
戴克斯特拉1956年在荷兰数学和计算机科学研究学会 担任程序员时为了展示新型计算机ARMAC的功能曾思考过最短路径问题的解法[ 22] 。他的目标是让不去实际计算的人也能理解这个问题和解决的方法,于是他在发现了这个算法之后在ARMAC上做了简单实验[ 8] 。1959年,他正式将此算法发表在期刊上,该算法也成为了戴克斯特拉成名的基石之一[ 8] [ 9] 。
相关应用
一个多区域OSPF网络,在OSPF中使用本算法计算最短路径
链路状态路由协议 中需要计算最短路时常常要用到该算法,该算法在開放最短路徑優先 和中间系统到中间系统 协议中的相关应用是其在網絡路由 中的典型實現[ 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.
外部連結