[问题] DAG找最短路径问题

楼主: VeranoDB   2013-02-03 18:30:06
最近友人问我一个算法的考题
找了很多资料还是不太会想请教大大们
Let G be a direct acyclic graph with vertex set V and arc set E. Suppose that
s is the only vertwx with in-degree zero. Consider following for finding the
shorest path lengths from s to all the other vertices. Here each arc has unit
length.
Algorithm TTT
find a (__) (v1=s,v2,...,vn) of G // What kind of sequence it is
set d[1]=0 and d[i]=n for any i>1;
for i from 1 to n-1 do
for each j such that there is an arc (vi,vj) do
if (__) then (__)
the time complexity is O(__)
问这4个填空
我只有找到是最后一个好像是O(|V|+|E|)
不知道可不可以在这问,如果不行我会删除
感谢!
作者: suhorng ( )   2013-02-03 20:32:00
第一个空格应该跟拓朴顺序有关第二, 三个空格就是 relax, 比较短就放松
作者: singlovesong (~"~)   2013-02-03 23:08:00
topological sorted order, d[vi]+arc(vi,vj) <d[vj]d[vj] = d[vi] + arc(vi,vj)猜的
楼主: VeranoDB   2013-02-07 00:15:00
感谢回答

Links booklink

Contact Us: admin [ a t ] ucptt.com