1. 程式人生 > >劍指offer——按字典順序輸出字串的排列

劍指offer——按字典順序輸出字串的排列

很多演算法題對於Python來說,感覺都可以用封裝解決。其實若按照c++一步一步來進行,有時候也失去了Python便利的意義。(反正我沒在答案裡找到。)
基本思路都是用先把可能的排列找出來,在sorted。

class Solution:
	def Permutation(self,ss):
		res=[]
		if len(ss)<2:
			return ss.split()
		for i in range(len(ss)):
			for n in map(lambda x:x+ss[i],self.Permutation(ss[:i]+ss[i+1:])):
			#除第i位置的元素,列出排列組合,遞迴運算
				if n not in res:
					res.append(n)
		return sorted(res)
		

一直不太會使用lambda,map就把他分解按照下面的程式碼,不過好像編譯不過。
尷尬— —!

for i in range (len(ss)):
	x=self.Permutation(ss[:i]+ss[i+1:])
	x=x+ss[i]
	for n in x