12

有谁知道 python networkx 是否预先计算使用 Networkx DiGraph 创建的树的节点深度?

由于我还没有看到在 networkx 中定义树的方法,因此可能只需要使用外部数据结构来计算节点深度。

4

1 回答 1

10

如果您知道树的根,您可以使用 shortest_path() 函数来获取到根的距离:

In [1]: import networkx as nx

In [2]: G = nx.DiGraph()

In [3]: G.add_path([0,10,20,30])

In [4]: G.add_path([0,1,2,3])

In [5]: nx.shortest_path_length(G,0) # assume a tree rooted at node 0
Out[5]: {0: 0, 1: 1, 2: 2, 3: 3, 10: 1, 20: 2, 30: 3}
于 2013-11-08T04:18:43.937 回答