题解 | #字符串的排列#

字符串的排列

https://www.nowcoder.com/practice/fe6b651b66ae47d7acce78ffdd9a96c7

#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
# 
# @param str string字符串 
# @return string字符串一维数组
#
class Solution:
    def Permutation(self , str: str) -> List[str]:
        # write code here
        ans = []
        path = [''] * len(str)
        onPath = [False] * len(str)
        str = list(str)
        str.sort()
        def dfs(i: int) -> None:
            if i == len(str):
                ans.append(path.copy())
                return
            for j in range(0, len(str)):
                if onPath[j] or (j > 0 and str[j] == str[j - 1] and not onPath[j - 1]):
                    continue
                path.append(str[j])
                onPath[j] = True
                dfs(i + 1)
                path.pop()
                onPath[j] = False
        dfs(0)
        return [''.join(item) for item in ans]

全部评论

相关推荐

一个菜鸡罢了:哥们,感觉你的简历还是有点问题的,我提几点建议,看看能不能提供一点帮助 1. ”新余学院“别加粗,课程不清楚是否有必要写,感觉版面不如拿来写一下做过的事情,教育经历是你的弱势就尽量少写 2. “干部及社团经历”和“自我评价”删掉 3. 论文后面的“录用”和“小修”啥的都删掉,默认全录用,问了再说,反正小修毕业前肯定能发出来 4. 工作经验和研究成果没有体现你的个人贡献,着重包装一下个人贡献
点赞 评论 收藏
分享
爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务