剑指offer面试题38. 字符串的排列(回溯)

题目描述

**输入一个字符串,打印出该字符串中字符的所有排列。

你可以以任意顺序返回这个字符串数组,但里面不能有重复元素。**
在这里插入图片描述

思路

详见链接

代码

class Solution:
	def permutation(self,s:str)->List[str]:
		c, res = list(s),[]
		def dfs(x):
			if x == len(c) - 1
				res.append(''.join(c))
				return
			dic = set()
			for i in range(x,len(c)):
				if c[i] in dic:
					continue
				dic.add(c[i])
				c[i], c[x] = c[x], c[i]
				dfs(x+1)
				c[i], c[x] = c[x], c[i]
		dfs(0)
		return res
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章