SymPy | Prufer.to_tree() en Python

Prufer.to_tree() : to_tree() es una función de biblioteca Sympy de Python que devuelve la representación de árbol de la secuencia de Prufer.

Sintaxis:
sympy.combinatorics.Prufer.prufer.to_tree()

Retorno:
representación de la sucesión de Prufer

Código #1: to_tree() Ejemplo

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

Producción :

Preferir un to_tree : [[0, 1], [0, 2], [2, 3]]

Código #2: to_tree() Ejemplo

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

Producción :

Prufer b a_tree : [[0, 1], [0, 2], [2, 3]]

Publicación traducida automáticamente

Artículo escrito por noobestars101 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *