21. 最短パス
a
距離行列 b
e
c
> average.path.length(g) d
aからdまでの最短経路を探す。
a b c d e
> sum <- a - 1 1 2 1
+ get.all.shortest.paths(g,
+ “a",”d",mode="out")
b 1 - 2 1 2
> V(g)[sum$res[[1]]] c 1 2 - 3 2
Vertex sequence:
[1]”a” “b” “d” d 2 1 3 - 1
> V(g)[sum$res[[2]]]
Vertex sequence:
e 1 2 2 1 -
[1]”a” “e” “d” > shortest.paths(g)