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


Python NetworkX bfs_successors用法及代碼示例


本文簡要介紹 networkx.algorithms.traversal.breadth_first_search.bfs_successors 的用法。

用法:

bfs_successors(G, source, depth_limit=None, sort_neighbors=None)

返回源中廣度優先搜索中後繼者的迭代器。

參數

GNetworkX 圖
source節點

指定廣度優先搜索的起始節點

depth_limit整數,可選(默認=len(G))

指定最大搜索深度

sort_neighbors函數

將給定節點的鄰居列表作為輸入的函數,並在這些鄰居上返回 iterator,但具有自定義排序。

返回

成功:迭代器

(node, successors) 迭代器,其中 successors 是來自 source 的廣度優先搜索中 node 的後繼者的非空列表。要出現在迭代器中,node 必須有後繼。

注意

基於 D. Eppstein 的 http://www.ics.uci.edu/~eppstein/PADS/BFS.py,2004 年 7 月。根據 Wikipedia 文章“Depth-limited-search”進行的允許深度限製的修改。

例子

>>> G = nx.path_graph(3)
>>> print(dict(nx.bfs_successors(G, 0)))
{0: [1], 1: [2]}
>>> H = nx.Graph()
>>> H.add_edges_from([(0, 1), (0, 2), (1, 3), (1, 4), (2, 5), (2, 6)])
>>> print(dict(nx.bfs_successors(H, 0)))
{0: [1, 2], 1: [3, 4], 2: [5, 6]}
>>> G = nx.Graph()
>>> nx.add_path(G, [0, 1, 2, 3, 4, 5, 6])
>>> nx.add_path(G, [2, 7, 8, 9, 10])
>>> print(dict(nx.bfs_successors(G, source=1, depth_limit=3)))
{1: [0, 2], 2: [3, 7], 3: [4], 7: [8]}
>>> G = nx.DiGraph()
>>> nx.add_path(G, [0, 1, 2, 3, 4, 5])
>>> print(dict(nx.bfs_successors(G, source=3)))
{3: [4], 4: [5]}

相關用法


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