【剑指Offer_11】字符串的排列(permutations)

题目描述

输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。

输入描述:

输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小

 使用permutations()函数

# -*- coding:utf-8 -*-
class Solution:
    def Permutation(self, ss):
        # write code here
        slist = list(ss)
        if ss == "":
            return slist
        from itertools import permutations
        temp = list(permutations(slist))
        ans = []
        for i in range(len(temp)):
            ans.append("".join(temp[i]))
        return sorted(set(ans))
       

补充:

permutations()函数:

from itertools import permutations
ss = "aba"
l = list(permutations(ss))
print(l)

>>[('a', 'b', 'a'), ('a', 'a', 'b'), ('b', 'a', 'a'), ('b', 'a', 'a'), ('a', 'a', 'b'), ('a', 'b', 'a')]

猜你喜欢

转载自blog.csdn.net/Vici__/article/details/104487221
今日推荐