leetcode 46. 全排列

Posted wz-archer

tags:

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

给定一个 没有重复 数字的序列,返回其所有可能的全排列。

示例:

输入: [1,2,3]
输出:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
通过次数94,592提交次数126,981

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/permutations

class Solution {
public:
    vector<vector<int>>s;
    int n;
    void f(vector<int>& a,int x){
        if(x==n)s.push_back(a);
        else{
            for(int i=x;i<n;i++){
                swap(a[x],a[i]);
                f(a,x+1);
                swap(a[x],a[i]);
            }
        }
    }
    vector<vector<int>> permute(vector<int>& nums) {
        n=nums.size();
        f(nums,0);
        return s;
    }
};

 

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

[Leetcode 46]全排列 Permutations 递归

LeetCode 46. 全排列(Permutations)

LeetCode:全排列46

LeetCode:46. 全排列47. 全排列 II

LeetCode46 回溯算法求全排列,这次是真全排列

[LeetCode] 46. Permutations(全排列)