Leetcode刷题Python46. 全排列

Posted Better Bench

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题Python46. 全排列相关的知识,希望对你有一定的参考价值。

1 题目

给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。

示例 1:

输入:nums = [1,2,3]
输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

示例 2:

输入:nums = [0,1]
输出:[[0,1],[1,0]]

示例 3:

输入:nums = [1]
输出:[[1]]

2 解析

3 Python实现

class Solution:
    def permute(self, nums: List[int]) -> List[List[int]]:
        res = []
        n = len(nums)
        def back_dfs(first=0):
            if first ==n:
                res.append(nums[:])
            for i in range(first,n):
                nums[first],nums[i] = nums[i],nums[first]
                back_dfs(first+1)
                nums[first], nums[i] = nums[i], nums[first]
        back_dfs()
        return res

以上是关于Leetcode刷题Python46. 全排列的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-46. 全排列--回溯算法--python

leetcode-46. 全排列--回溯算法--python

java刷题--46全排列

LeetCode刷题模版:41 - 50

LeetCode刷题模版:41 - 50

#leetcode刷题之路47-全排列 II