パッケージ library.graph
クラス ShortestPath
java.lang.Object
library.graph.ShortestPath
最短路クラス
-
コンストラクタの概要
-
メソッドの概要
-
コンストラクタの詳細
-
ShortestPath
public ShortestPath(long[] cost, int[] src) コンストラクタ- パラメータ:
cost
-src
-
-
-
メソッドの詳細
-
isThru
public final boolean isThru(int i) 経路があるかどうか判定する- パラメータ:
i
-- 戻り値:
- 経路があるか
-
path
public final int[] path(int i) 経路復元- パラメータ:
i
-
-
get
public final long[] get()全点間の最短コストを返す- 戻り値:
- 全点間の最短コスト
-