📜  SymPy | Python中的 Prufer.prufer_repr()

📅  最后修改于: 2022-05-13 01:54:37.969000             🧑  作者: Mango

SymPy | Python中的 Prufer.prufer_repr()

Prufer.prufer_repr() : prufer_repr()是一个 sympy Python库函数,它返回 Prufer 对象的 Prufer 序列。通过删除最高编号的顶点,然后记录它所连接的节点,最后继续直到只剩下两个顶点,就可以找到序列。

代码 #1:prufer_repr() 示例

# Python code explaining
# SymPy.Prufer.prufer_repr()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.prufer_repr()
  
# Creating Prufer
a = Prufer([1, 2, 3], [2, 4, 5])
  
# prufer_repr value
print ("Prufer a prufer_repr : ", a.prufer_repr)

输出 :

代码 #2:prufer_repr() 示例

# Python code explaining
# SymPy.Prufer.prufer_repr()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.prufer import Prufer
  
# Using from 
# sympy.combinatorics.prufer.Prufer.prufer_repr()
  
# Creating Prufer
b = Prufer([1, 2, 3, 2, 4, 5], [6, 7], [8])
  
# prufer_repr value
print ("Prufer b prufer_repr : ", b.prufer_repr)

输出 :