本文簡要介紹
networkx.algorithms.shortest_paths.unweighted.single_target_shortest_path_length
的用法。用法:
single_target_shortest_path_length(G, target, cutoff=None)
計算從所有可達節點到目標的最短路徑長度。
- G:NetworkX 圖
- target:節點
路徑的目標節點
- cutoff:整數,可選
停止搜索的深度。僅返回長度 <= 截止的路徑。
- lengths:迭代器
(源,最短路徑長度)迭代器
參數:
返回:
例子:
>>> G = nx.path_graph(5, create_using=nx.DiGraph()) >>> length = dict(nx.single_target_shortest_path_length(G, 4)) >>> length[0] 4 >>> for node in range(5): ... print(f"{node}: {length[node]}") 0: 4 1: 3 2: 2 3: 1 4: 0
相關用法
- Python NetworkX single_target_shortest_path用法及代碼示例
- Python NetworkX single_source_dijkstra_path_length用法及代碼示例
- Python NetworkX single_source_bellman_ford用法及代碼示例
- Python NetworkX single_source_bellman_ford_path用法及代碼示例
- Python NetworkX single_source_bellman_ford_path_length用法及代碼示例
- Python NetworkX single_source_shortest_path_length用法及代碼示例
- Python NetworkX single_source_dijkstra用法及代碼示例
- Python NetworkX single_source_shortest_path用法及代碼示例
- Python NetworkX single_source_dijkstra_path用法及代碼示例
- Python NetworkX simrank_similarity用法及代碼示例
- Python NetworkX simulated_annealing_tsp用法及代碼示例
- Python NetworkX simple_cycles用法及代碼示例
- Python NetworkX subgraph_view用法及代碼示例
- Python NetworkX shortest_path用法及代碼示例
- Python NetworkX square_clustering用法及代碼示例
- Python NetworkX soft_random_geometric_graph用法及代碼示例
- Python NetworkX sets用法及代碼示例
- Python NetworkX shell_layout用法及代碼示例
- Python NetworkX sudoku_graph用法及代碼示例
- Python NetworkX snap_aggregation用法及代碼示例
- Python NetworkX set_edge_attributes用法及代碼示例
- Python NetworkX stochastic_block_model用法及代碼示例
- Python NetworkX symmetric_difference用法及代碼示例
- Python NetworkX selfloop_edges用法及代碼示例
- Python NetworkX second_order_centrality用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.shortest_paths.unweighted.single_target_shortest_path_length。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。