networkx是否跟踪节点深度?

时间:2013-11-08 00:08:21

标签: python networkx

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

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

1 个答案:

答案 0 :(得分:6)

如果您知道树的根,可以使用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}