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

python 实现排列组合

时间:2017-08-31 21:38:22      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:tool   根据   author   word   tools   class   lan   组合   alt   

1.python语言简单、方便,其内部可以快速实现排列组合算法,下面做简单介绍、

2.一个列表数据任意组合

2.1主要是利用自带的库

#_*_ coding:utf-8 _*_
#__author__=‘dragon‘
import itertools
list1 = [1,2,3,4,5]
list2 = []
for i in range(1,len(list1)+1):
    iter = itertools.combinations(list1,i)
    list2.append(list(iter))
print(list2)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

技术分享

3.排列的实现

#_*_ coding:utf-8 _*_
#__author__=‘dragon‘
import itertools
list1 = [1,2,3,4,5]
list2 = []
for i in range(1,len(list1)+1):
    iter = itertools.permutations(list1,i)
    list2.append(list(iter))
print(list2)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

技术分享

可以根据你需要随意组合

python 实现排列组合

标签:tool   根据   author   word   tools   class   lan   组合   alt   

原文地址:http://www.cnblogs.com/smuxiaolei/p/7460619.html

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