码迷,mamicode.com
首页 > 其他好文 > 详细

字符串的排列(important)

时间:2019-03-02 18:51:15      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:art   cab   perm   描述   pytho   res   hang   ati   rss   

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

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

python solution:

# -*- coding:utf-8 -*-
class Solution:
    def Permutation(self, ss):
        if not ss:
            return []
        def Permutation(startIdx):
            if startIdx >= len(arrSs):
                clone = ''.join(arrSs)
                res.append(clone)
            else:
                changeIdx = startIdx
                while changeIdx < len(arrSs):
                    arrSs[changeIdx], arrSs[startIdx] = arrSs[startIdx], arrSs[changeIdx]
                    Permutation(startIdx + 1)
                    arrSs[changeIdx], arrSs[startIdx] = arrSs[startIdx], arrSs[changeIdx]
                    changeIdx += 1
        res = []
        arrSs = list(ss)
        Permutation(0)
        res = list(set(res))
        return sorted(res)

字符串的排列(important)

标签:art   cab   perm   描述   pytho   res   hang   ati   rss   

原文地址:https://www.cnblogs.com/bernieloveslife/p/10426892.html

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