假设有一个有向图,100-Vertexes
例如V_1---> V_2 ---> ... ---> V_100
所有边的权重都是 1。我们想使用Bellman-Ford
算法找到顶点 1(V_1)
到其他顶点之间的最短路径。该算法在每个步骤中以任意顺序检查所有边缘。如果一步V_1
中所有其他顶点之间的最短路径not changed
(来自先前的值),则算法将停止!the number of steps in this algorithms
depends on the order of inspecting edges
.
这个算法的最大和最小步数是多少?
a) 100, 10000
b) 2, 100
c) 100, 100
d) 2, 99
谁能描述我为什么选择选项(2)来回答这个问题?