当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。