码迷,mamicode.com
首页 > 编程语言 > 详细

全排列python算法

时间:2020-06-12 12:48:38      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:else   int   排除   div   pos   重复   pre   二层   yield   

其实和八皇后的算法差不多,八皇后不检查斜线的结果就是全排列,此外八皇后中检查皇后位置麻烦,这里只要把列表转成词典,检查一下长度就行了(有重复元素,比如到第二层,应该是1,2,如果是1,1,那么词典长度就只有1了,需要排除):

def permutation(n,floor,per):
    for pos in range(n):
        if len(set(per + [pos])) == floor:
            if floor == n:
                    yield [pos,]
            else:
                    for result in permutation(n,floor+1, per + [pos,]):
                            yield [pos,] + result

for res in permutation(3,1,[]):
    print(res)

结果:

[0, 1, 2]
[0, 2, 1]
[1, 0, 2]
[1, 2, 0]
[2, 0, 1]
[2, 1, 0]

全排列python算法

标签:else   int   排除   div   pos   重复   pre   二层   yield   

原文地址:https://www.cnblogs.com/nocomment/p/13098495.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!