本文簡要介紹
networkx.algorithms.shortest_paths.unweighted.all_pairs_shortest_path_length
的用法。用法:
all_pairs_shortest_path_length(G, cutoff=None)
計算
G
中所有節點之間的最短路徑長度。- G:NetworkX 圖
- cutoff:整數,可選
停止搜索的深度。僅返回長度最多為
cutoff
的路徑。
- lengths:迭代器
(source, dictionary) 以目標為鍵的字典和最短路徑長度作為鍵值的迭代器。
參數:
返回:
注意:
返回的迭代器隻有可到達的節點對。
例子:
>>> G = nx.path_graph(5) >>> length = dict(nx.all_pairs_shortest_path_length(G)) >>> for node in [0, 1, 2, 3, 4]: ... print(f"1 - {node}: {length[1][node]}") 1 - 0: 1 1 - 1: 0 1 - 2: 1 1 - 3: 2 1 - 4: 3 >>> length[3][2] 1 >>> length[2][2] 0
相關用法
- Python NetworkX all_pairs_shortest_path用法及代碼示例
- Python NetworkX all_pairs_dijkstra_path用法及代碼示例
- Python NetworkX all_pairs_bellman_ford_path用法及代碼示例
- Python NetworkX all_pairs_dijkstra用法及代碼示例
- Python NetworkX all_pairs_bellman_ford_path_length用法及代碼示例
- Python NetworkX all_pairs_dijkstra_path_length用法及代碼示例
- Python NetworkX all_simple_paths用法及代碼示例
- Python NetworkX all_node_cuts用法及代碼示例
- Python NetworkX all_shortest_paths用法及代碼示例
- Python NetworkX all_simple_edge_paths用法及代碼示例
- Python NetworkX all_topological_sorts用法及代碼示例
- Python NetworkX average_degree_connectivity用法及代碼示例
- Python NetworkX add_star用法及代碼示例
- Python NetworkX add_path用法及代碼示例
- Python NetworkX average_clustering用法及代碼示例
- Python NetworkX attr_matrix用法及代碼示例
- Python NetworkX arbitrary_element用法及代碼示例
- Python NetworkX average_neighbor_degree用法及代碼示例
- Python NetworkX attribute_mixing_dict用法及代碼示例
- Python NetworkX attr_sparse_matrix用法及代碼示例
- Python NetworkX articulation_points用法及代碼示例
- Python NetworkX asadpour_atsp用法及代碼示例
- Python NetworkX adjacency_graph用法及代碼示例
- Python NetworkX astar_path用法及代碼示例
- Python NetworkX ancestors用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.shortest_paths.unweighted.all_pairs_shortest_path_length。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。