networkx.algorithms.cycles.simple_cycles
的用法。用法:
simple_cycles(G)
找到有向图的简单循环(基本电路)。
simple cycle
或elementary circuit
是没有节点出现两次的封闭路径。如果两个基本电路不是彼此的循环排列,则它们是不同的。这是约翰逊算法的非递归迭代器/生成器版本 [1]。对于某些情况可能有更好的算法[2][3]。
- G:NetworkX 有向图
有向图
- cycle_generator:生成器
生成图的基本循环的生成器。每个循环由循环中的节点列表表示。
参数:
返回:
注意:
实现遵循[1]中的第79-80页。
节点、 边和 基本电路的时间复杂度为 。
参考:
- 1(1,2)
Finding all the elementary circuits of a directed graph. D. B. Johnson, SIAM Journal on Computing 4, no. 1, 77-84, 1975. https://doi.org/10.1137/0204007
- 2
Enumerating the cycles of a digraph: a new preprocessing strategy. G. Loizou and P. Thanish, Information Sciences, v. 27, 163-182, 1982.
- 3
A search strategy for the elementary cycles of a directed graph. J.L. Szwarcfiter and P.E. Lauer, BIT NUMERICAL MATHEMATICS, v. 16, no. 2, 192-204, 1976.
例子:
>>> edges = [(0, 0), (0, 1), (0, 2), (1, 2), (2, 0), (2, 1), (2, 2)] >>> G = nx.DiGraph(edges) >>> len(list(nx.simple_cycles(G))) 5
要过滤循环以使其不包含某些节点或边,请在调用之前复制您的图并消除这些节点或边
>>> copyG = G.copy() >>> copyG.remove_nodes_from([1]) >>> copyG.remove_edges_from([(0, 1)]) >>> len(list(nx.simple_cycles(copyG))) 3
相关用法
- Python NetworkX simrank_similarity用法及代码示例
- Python NetworkX simulated_annealing_tsp用法及代码示例
- Python NetworkX single_source_dijkstra_path_length用法及代码示例
- Python NetworkX single_source_bellman_ford用法及代码示例
- Python NetworkX single_source_bellman_ford_path用法及代码示例
- Python NetworkX single_source_bellman_ford_path_length用法及代码示例
- Python NetworkX single_source_shortest_path_length用法及代码示例
- Python NetworkX single_source_dijkstra用法及代码示例
- Python NetworkX single_source_shortest_path用法及代码示例
- Python NetworkX single_source_dijkstra_path用法及代码示例
- Python NetworkX single_target_shortest_path_length用法及代码示例
- Python NetworkX single_target_shortest_path用法及代码示例
- Python NetworkX subgraph_view用法及代码示例
- Python NetworkX shortest_path用法及代码示例
- Python NetworkX square_clustering用法及代码示例
- Python NetworkX soft_random_geometric_graph用法及代码示例
- Python NetworkX sets用法及代码示例
- Python NetworkX shell_layout用法及代码示例
- Python NetworkX sudoku_graph用法及代码示例
- Python NetworkX snap_aggregation用法及代码示例
- Python NetworkX set_edge_attributes用法及代码示例
- Python NetworkX stochastic_block_model用法及代码示例
- Python NetworkX symmetric_difference用法及代码示例
- Python NetworkX selfloop_edges用法及代码示例
- Python NetworkX second_order_centrality用法及代码示例
注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.algorithms.cycles.simple_cycles。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。