networkx.algorithms.graphical.is_graphical
的用法。用法:
is_graphical(sequence, method='eg')
如果 sequence 是有效的度數序列,則返回 True。
如果某個圖可以實現,則度數序列是有效的。
- sequence:列表或可迭代容器
整數節點度數序列
- method:“eg” | “hh”(默認:‘eg’)
用於驗證度序列的方法。 “eg” 對應於 Erdős-Gallai 算法 [EG1960]、[choudum1986],“hh” 對應於 Havel-Hakimi 算法 [havel1955]、[hakimi1962]、[CL1996]。
- valid:bool
如果序列是有效的度數序列,則為 True,否則為 False。
參數:
返回:
參考:
- EG1960
Erdős and Gallai, Mat. Lapok 11 264, 1960.
- choudum1986
S.A. Choudum. “A simple proof of the Erdős-Gallai theorem on graph sequences.” Bulletin of the Australian Mathematical Society, 33, pp 67-70, 1986. https://doi.org/10.1017/S0004972700002872
- havel1955
Havel, V. “A Remark on the Existence of Finite Graphs” Casopis Pest. Mat. 80, 477-480, 1955.
- hakimi1962
Hakimi, S. “On the Realizability of a Set of Integers as Degrees of the Vertices of a Graph.” SIAM J. Appl. Math. 10, 496-506, 1962.
- CL1996
G. Chartrand and L. Lesniak, “Graphs and Digraphs”, Chapman and Hall/CRC, 1996.
例子:
>>> G = nx.path_graph(4) >>> sequence = (d for n, d in G.degree()) >>> nx.is_graphical(sequence) True
相關用法
- Python NetworkX is_directed_acyclic_graph用法及代碼示例
- Python NetworkX is_locally_k_edge_connected用法及代碼示例
- Python NetworkX is_isomorphic用法及代碼示例
- Python NetworkX is_simple_path用法及代碼示例
- Python NetworkX is_bipartite用法及代碼示例
- Python NetworkX is_distance_regular用法及代碼示例
- Python NetworkX is_bipartite_node_set用法及代碼示例
- Python NetworkX is_strongly_regular用法及代碼示例
- Python NetworkX is_k_edge_connected用法及代碼示例
- Python NetworkX is_threshold_graph用法及代碼示例
- Python NetworkX is_isolate用法及代碼示例
- Python NetworkX is_semiconnected用法及代碼示例
- Python NetworkX is_weighted用法及代碼示例
- Python NetworkX is_biconnected用法及代碼示例
- Python NetworkX is_aperiodic用法及代碼示例
- Python NetworkX is_eulerian用法及代碼示例
- Python NetworkX is_chordal用法及代碼示例
- Python NetworkX is_at_free用法及代碼示例
- Python NetworkX is_connected用法及代碼示例
- Python NetworkX is_negatively_weighted用法及代碼示例
- Python NetworkX isolates用法及代碼示例
- Python NetworkX inverse_line_graph用法及代碼示例
- Python NetworkX intersection用法及代碼示例
- Python NetworkX intersection_array用法及代碼示例
- Python NetworkX induced_subgraph用法及代碼示例
注:本文由純淨天空篩選整理自networkx.org大神的英文原創作品 networkx.algorithms.graphical.is_graphical。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。