码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 46. 全排列

时间:2020-03-28 23:54:22      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:https   ret   http   ati   int   return   提交   push   problem   

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

示例:

输入: [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. 全排列

标签:https   ret   http   ati   int   return   提交   push   problem   

原文地址:https://www.cnblogs.com/wz-archer/p/12589913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!