Python排列組合問題

來源:互聯網
上載者:User

標籤:

1.字串的全排列

問題描述:列印出原字串中所有字元的所有排列。——將輸入字串中的每個字元作為一個不同的字元看待,即使它們是重複的,如‘aaa‘應列印6次。

Python可以用產生器解決:

def permutation(elements):    if len(elements) <=1:        yield elements    else:        for perm in permutation(elements[1:]):            for i in range(len(elements)):                yield perm[:i] + elements[0:1] + perm[i:]if __name__ == "__main__":    s=‘Diei‘    for item in list(permutation(list(s))):        print ‘‘.join(item)

——產生器方法就是不停的插入前面一個元素的過程。

2.字串的全組合

問題描述:列印出原字串中所有字元的所有可能的組合。組合長度範圍在1到字串長度之間。

import copydef combine(l, n):    if n==0:        return    answers = []    one = [0 for i in range(n)]    def next_c(li = 0, ni = 0):         if ni == n:            answers.append(copy.copy(one))            return        for lj in xrange(li, len(l)):            one[ni] = l[lj]            next_c(lj + 1, ni + 1)    next_c()    return answersif __name__ == "__main__":    s=‘Dieicd‘    l=list(set(s))    answer=[]    for i in range(len(l)):        answer+=combine(l,i+1)    print len(answer)    for i in answer:        print ‘‘.join(i)

——按包含的字元來檢測

3.使用Python的itertools庫

from itertools import product
#兩個序列對應的排列from itertools import permutations
#排列from itertools import combinations
#組合l = [1, 2, 3]print len(list(product(l,repeat=3)))#print list(product(l, repeat=4))print list(permutations(l)) print list(combinations([1,2,3,4,5], 3))

 

  

 

Python排列組合問題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.