博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python itertools 排列组合
阅读量:6651 次
发布时间:2019-06-25

本文共 1947 字,大约阅读时间需要 6 分钟。

hot3.png

组合 

import itertoolsnums = [1, 2, 3, 4, 5, 6, 7, 8]for i in itertools.combinations(nums, 4):    print(i)(1, 2, 3, 4)(1, 2, 3, 5)(1, 2, 3, 6)(1, 2, 3, 7)(1, 2, 3, 8)。。。(4, 5, 6, 8)(4, 5, 7, 8)(4, 6, 7, 8)(5, 6, 7, 8)

排列

for i in itertools.permutations(nums, 4):    print(i)(1, 2, 3, 4)(1, 2, 3, 5)(1, 2, 3, 6)(1, 2, 3, 7)。。。(8, 7, 6, 2)(8, 7, 6, 3)(8, 7, 6, 4)(8, 7, 6, 5)

 

product

从给定的序列中各取一个生成序列,可重复的排列数

product('ab', range(3)) --> ('a',0) ('a',1) ('a',2) ('b',0) ('b',1) ('b',2)product((0,1), (0,1), (0,1)) --> (0,0,0) (0,0,1) (0,1,0) (0,1,1) (1,0,0) ...
for i in itertools.product([0, 1], repeat=3):    print(i)(0, 0, 0)(0, 0, 1)(0, 1, 0)(0, 1, 1)(1, 0, 0)(1, 0, 1)(1, 1, 0)(1, 1, 1)

 

combinations_with_replacement

combinations_with_replacement(iterable, r) --> combinations_with_replacement objectReturn successive r-length combinations of elements in the iterableallowing individual elements to have successive repeats.combinations_with_replacement('ABC', 2) --> AA AB AC BB BC CC

 

可重复的组合数

for i in itertools.combinations_with_replacement([1, 2, 3, 4], 3):    print(i)(1, 1, 1)(1, 1, 2)(1, 1, 3)(1, 1, 4)(1, 2, 2)(1, 2, 3)(1, 2, 4)(1, 3, 3)(1, 3, 4)(1, 4, 4)(2, 2, 2)(2, 2, 3)(2, 2, 4)(2, 3, 3)(2, 3, 4)(2, 4, 4)(3, 3, 3)(3, 3, 4)(3, 4, 4)(4, 4, 4)

对比product

for i in itertools.product([1, 2, 3, 4], repeat=3):    print(i)(1, 1, 1)(1, 1, 2)(1, 1, 3)(1, 1, 4)(1, 2, 1)(1, 2, 2)(1, 2, 3)(1, 2, 4)(1, 3, 1)(1, 3, 2)(1, 3, 3)(1, 3, 4)(1, 4, 1)(1, 4, 2)(1, 4, 3)(1, 4, 4)(2, 1, 1)(2, 1, 2)(2, 1, 3)(2, 1, 4)(2, 2, 1)(2, 2, 2)(2, 2, 3)(2, 2, 4)(2, 3, 1)(2, 3, 2)(2, 3, 3)(2, 3, 4)(2, 4, 1)(2, 4, 2)(2, 4, 3)(2, 4, 4)(3, 1, 1)(3, 1, 2)(3, 1, 3)(3, 1, 4)(3, 2, 1)(3, 2, 2)(3, 2, 3)(3, 2, 4)(3, 3, 1)(3, 3, 2)(3, 3, 3)(3, 3, 4)(3, 4, 1)(3, 4, 2)(3, 4, 3)(3, 4, 4)(4, 1, 1)(4, 1, 2)(4, 1, 3)(4, 1, 4)(4, 2, 1)(4, 2, 2)(4, 2, 3)(4, 2, 4)(4, 3, 1)(4, 3, 2)(4, 3, 3)(4, 3, 4)(4, 4, 1)(4, 4, 2)(4, 4, 3)(4, 4, 4)

 

转载于:https://my.oschina.net/ahaoboy/blog/1814511

你可能感兴趣的文章
考虑碰撞的二能级原子和电磁场的相互作用
查看>>
从乔布斯在斯坦福大学毕业典礼上的演讲感触
查看>>
无限级分类
查看>>
美化fedora字体
查看>>
【LeetCode】6 - ZigZag Conversion
查看>>
Ambiguous HTTP method Actions require an explicit HttpMethod binding for Swagger 2.0
查看>>
OpenSSL修复加密漏洞、加强Logjam防御
查看>>
H5新增的标签以及改良的标签
查看>>
初学者 的 js 关于checkbox全选的问题
查看>>
计算反常积分
查看>>
第一次测试感想
查看>>
JAVA多线程与多进程
查看>>
复制的文本加上版权信息
查看>>
二分查找
查看>>
path,classpath
查看>>
放大电路分析方法二
查看>>
[洛谷P5105]不强制在线的动态快速排序
查看>>
[洛谷P4735]最大异或和
查看>>
跟我学算法-贝叶斯拼写检查器
查看>>
Android使用动态代理搭建网络模块框架
查看>>