Python| SymPy combinatorics.next_lex() 方法
借助sympy.combinatorics.partitions.IntegerPartition().next_lex()
方法,我们可以使用sympy.combinatorics.partitions.IntegerPartition().next_lex()
方法按词法顺序获取整数 n 的下一个分区。
Syntax : sympy.combinatorics.partitions.IntegerPartition().next_lex()
Return : Return the lexical value of next partition of integer n.
示例 #1:
在这个例子中我们可以看到,通过使用sympy.combinatorics.partitions.IntegerPartition().next_lex()
方法,我们可以得到整数 n 的下一个分区的词法值。
# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
# Using sympy.combinatorics.partitions.IntegerPartition().next_lex() method
gfg = IntegerPartition([1, 2, 3])
print(gfg.next_lex())
输出 :
[3, 3]
示例 #2:
# import sympy and IntegerPartition
from sympy.combinatorics.partitions import IntegerPartition
from sympy import *
# Using sympy.combinatorics.partitions.IntegerPartition().next_lex() method
gfg = IntegerPartition([1, 2, 3, 4, 3, 2, 1])
print(gfg.next_lex())
输出 :
[4, 3, 3, 2, 2, 2]