标签: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; } };
标签:https ret http ati int return 提交 push problem
原文地址:https://www.cnblogs.com/wz-archer/p/12589913.html