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


Python NetworkX single_source_shortest_path_length用法及代碼示例


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

用法:

single_source_shortest_path_length(G, source, cutoff=None)

計算從源到所有可達節點的最短路徑長度。

參數

GNetworkX 圖
source節點

路徑的起始節點

cutoff整數,可選

停止搜索的深度。僅返回長度 <= 截止的路徑。

返回

lengthsdict

由節點鍵入的字典到源的最短路徑長度。

例子

>>> G = nx.path_graph(5)
>>> length = nx.single_source_shortest_path_length(G, 0)
>>> length[4]
4
>>> for node in length:
...     print(f"{node}: {length[node]}")
0: 0
1: 1
2: 2
3: 3
4: 4

相關用法


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