当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python NetworkX sudoku_graph用法及代码示例


本文简要介绍 networkx.generators.sudoku.sudoku_graph 的用法。

用法:

sudoku_graph(n=3)

返回 n-Sudoku 图。 n 的默认值为 3。

n-Sudoku 图是具有 n^4 个顶点的图,对应于 n^2 x n^2 网格的单元格。当且仅当它们属于同一行、列或n-by-n 框时,两个不同的顶点是相邻的。

参数

n: integer

数独图的阶数,等于行数的平方根。默认值为 3。

返回

NetworkX 图

n-Sudoku 图 Sud(n)。

参考

1

Herzberg, A. M., & Murty, M. R. (2007). Sudoku squares and chromatic polynomials. Notices of the AMS, 54(6), 708-717.

2

Sander, Torsten (2009), “Sudoku graphs are integral”, Electronic Journal of Combinatorics, 16 (1): Note 25, 7pp, MR 2529816

3

Wikipedia contributors. “Glossary of Sudoku.” Wikipedia, The Free Encyclopedia, 3 Dec. 2019. Web. 22 Dec. 2019.

例子

>>> G = nx.sudoku_graph()
>>> G.number_of_nodes()
81
>>> G.number_of_edges()
810
>>> sorted(G.neighbors(42))
[6, 15, 24, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 44, 51, 52, 53, 60, 69, 78]
>>> G = nx.sudoku_graph(2)
>>> G.number_of_nodes()
16
>>> G.number_of_edges()
56

相关用法


注:本文由纯净天空筛选整理自networkx.org大神的英文原创作品 networkx.generators.sudoku.sudoku_graph。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。