-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
字符串的排列和组合.py
52 lines (48 loc) · 1.67 KB
/
字符串的排列和组合.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
'''
输入一个字符串,按字典序打印出该字符串中字符的所有排列。
例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。
结果请按字母顺序输出。
输入描述:
输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。
'''
# -*- coding:utf-8 -*-
class Solution:
def Permutation(self, ss):
if not len(ss):
return []
if len(ss) == 1:
return list(ss)
charList = list(ss)
charList.sort()
pStr = []
for i in range(len(charList)):
if i > 0 and charList[i] == charList[i-1]:
continue
temp = self.Permutation(''.join(charList[:i])+''.join(charList[i+1:]))
for j in temp:
pStr.append(charList[i]+j)
return pStr
# 扩展习题, 生成字符的所有组合
# 比如输入abc, 则他们的组合有['a', 'ab', 'abc', 'ac', 'b', 'bc', 'c'], ab和ba属于不同的排列, 但属于同一个组合
def group(self, ss):
if not len(ss):
return []
if len(ss) == 1:
return list(ss)
charList = list(ss)
charList.sort()
pStr = []
for i in range(len(charList)):
pStr.append(charList[i])
if i > 0 and charList[i] == charList[i - 1]:
continue
temp = self.group(''.join(charList[i + 1:]))
for j in temp:
pStr.append(charList[i] + j)
pStr = list(set(pStr))
pStr.sort()
return pStr
ss = 'acb'
S = Solution()
# print(S.Permutation(ss))
print(S.group(ss))