标签: python list memory networkx graph-theory
我使用大型文本数据集创建了一个带有networkx的有向图。然后我使用函数simple_cycles(cycles = nx.simple_cycles(G)))来查找图中的所有循环,但是我得到了一个内存错误,因为这个函数返回一个巨大的列表。有没有其他方法可以找到有向图的周期?
networkx
cycles = nx.simple_cycles(G))