没有周期的排列
我想生成列表的所有可能排列,其中循环排列(从左到右)只能发生一次。
以下是一个示例:
让列表为[a,b,c]
。然后,我想具有[a,c,b]
之类的排列,但不是[b,c,a]
,因为这将是原始列表的循环置换<代码> [a,b,c] 。对于上面的列表,结果应该看起来像是
[A, B, C]
[A, C, B]
[B, A, C]
[C, B, A]
一个最小的工作示例,该示例使用permutations()
来自itertools
。
from itertools import permutations
def permutations_without_cycles(seq: list):
# Get a list of all permutations
permutations_all = list(permutations(seq))
print("\nAll permutations:")
for i, p in enumerate(permutations_all):
print(i, "\t", p)
# Get a list of all cyclic permutations
cyclic_permutations = [tuple(seq[i:] + seq[:i]) for i in range(len(seq))]
print("\nAll cyclic permutations:")
for i, p in enumerate(cyclic_permutations):
print(i, "\t", p)
# Remove all cyclic permutations except for one
cyclic_permutations = cyclic_permutations[1:] # keep one cycle
permutations_cleaned = [p for p in permutations_all if p not in cyclic_permutations]
print("\nCleaned permutations:")
for i, item in enumerate(permutations_cleaned):
print(i, "\t", item)
def main():
seq = ["A", "B", "C"]
permutations_without_cycles(seq=seq)
if __name__ == "__main__":
main()
我想知道itertools
中是否有一种方法可以有效地解决此问题?
I want to generate all possible permutations of a list, where cyclic permutations (going from left to right) should only occur once.
Here is an example:
Let the list be [A, B, C]
. Then I want to have permutations such as [A, C, B]
but not [B, C, A]
as this would be a circular permutation of the original list [A, B, C]
. For the list above, the result should look like
[A, B, C]
[A, C, B]
[B, A, C]
[C, B, A]
Here is a minimal working example that uses permutations()
from itertools
.
from itertools import permutations
def permutations_without_cycles(seq: list):
# Get a list of all permutations
permutations_all = list(permutations(seq))
print("\nAll permutations:")
for i, p in enumerate(permutations_all):
print(i, "\t", p)
# Get a list of all cyclic permutations
cyclic_permutations = [tuple(seq[i:] + seq[:i]) for i in range(len(seq))]
print("\nAll cyclic permutations:")
for i, p in enumerate(cyclic_permutations):
print(i, "\t", p)
# Remove all cyclic permutations except for one
cyclic_permutations = cyclic_permutations[1:] # keep one cycle
permutations_cleaned = [p for p in permutations_all if p not in cyclic_permutations]
print("\nCleaned permutations:")
for i, item in enumerate(permutations_cleaned):
print(i, "\t", item)
def main():
seq = ["A", "B", "C"]
permutations_without_cycles(seq=seq)
if __name__ == "__main__":
main()
I would like to know if there is a method in itertools
to solve this problem for efficiently?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那是不寻常的,所以不,这还不是在Itertools中。但是,我们可以显着优化您的方式(主要是通过使用 set 而不是列表,甚至仅通过单个不需要的列表来过滤不需要的循环。更有效地,我们可以计算不需要的排列的索引 [*] 和
islice
。请参阅底部的完整代码。[*]使用
基准结果,使用
list(range(n))
作为序列。 ints比较很快,因此,如果序列元素是一些具有更昂贵的比较的对象,则我的有效
解决方案将具有更大的优势,因为它是唯一不依赖比较排列/元素的对象。Code (Attempt This Online!):
That's unusual, so no, that's not already in itertools. But we can optimize your way significantly (mainly by filtering out the unwanted cyclics by using a set instead of a list, or even by just the single next unwanted one). Even more efficiently, we can compute the indexes of the unwanted permutations[*] and
islice
between them. See the full code at the bottom.[*] Using a simplified version of permutation_index from more-itertools.
Benchmark results, using
list(range(n))
as the sequence. Ints compare fairly quickly, so if the sequence elements were some objects with more expensive comparisons, myefficient
solution would have an even bigger advantage, since it's the only one that doesn't rely on comparing permutations/elements.Code (Attempt This Online!):
主张:通过循环排列不相互关联的N元素的集合排列与N-1元素的所有排列一对一的对应关系。
不严格的证明:任何置换{i1,i2,...,in},具有k'th元素ik = 1,可以通过循环排列转换为置换{1,j2,...,...,jn}(带有j2 = i(k+1),j3 = i(k+2),...)。排列{1,J2,...,Jn}唯一代表循环排列的轨道。因此,n-1元素的任何置换{J2,...,Jn}代表n个元素置换的轨道,而n元素不与周期无关。
说服自己的最简单方法是计算维度(元素数):
dim [n] = n!
昏暗[循环排列] = n
dim [n的置换n并不与周期相关的n = n!/n =(n-1)! = dim [N-1的所有置换]
然后您需要做什么:
0。给定列表[“ 1”,“ 2”,...,“ n”]
Claim: The set permutations of N elements that are not related to each other via cyclic permutation is in one-to-one correspondence with all permutations of N-1 elements.
Not rigorous proof: Any permutation {i1,i2,...,iN}, with the k'th element ik=1, can be transformed by cyclic permutations to the permutation {1,j2,...,jN} (with j2=i(k+1),j3=i(k+2),...). The permutation {1,j2,...,jN} uniquely represents an orbit of cyclic permutations. Hence, any permutation of N-1 elements {j2,...,jN} represents the orbit of permutation of N elements not related by cycles.
The easiest way to convince yourself is to count dimensions (number of elements):
Dim[All permutation of N] = N!
Dim[Cyclic permutations] = N
Dim[Permutation of N not related by cycles] = N!/N = (N-1)! = Dim[All permutation of N-1]
Then what you need to do:
0. Given list ["1","2",...,"N"]
请参阅这篇文章: python:生成所有符合条件的
排列是从列表中提取第一个元素,生成剩余元素的所有排列,并将这些排列附加到第一个元素。
See this post: Python: Generate All Permutations Subject to Condition
The idea is to pull the first element from the list, generate all permutations of the remaining elements and append those permutations to that first element.