當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python NetworkX all_pairs_shortest_path用法及代碼示例


本文簡要介紹 networkx.algorithms.shortest_paths.unweighted.all_pairs_shortest_path 的用法。

用法:

all_pairs_shortest_path(G, cutoff=None)

計算所有節點之間的最短路徑。

參數

GNetworkX 圖
cutoff整數,可選

停止搜索的深度。僅返回長度最多為 cutoff 的路徑。

返回

lengths字典

最短路徑的字典,由源和目標鍵控。

例子

>>> G = nx.path_graph(5)
>>> path = dict(nx.all_pairs_shortest_path(G))
>>> print(path[0][4])
[0, 1, 2, 3, 4]

相關用法


注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.shortest_paths.unweighted.all_pairs_shortest_path。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。