全排列
全排列
问题描述
给定一个没有重复数字的序列,返回其所有可能的全排列。
示例:
输入: [1,2,3]
输出:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/permutations
思路
回溯算法,和以前的做法一样,详情见以前的题目。
题解
class Solution {
public:
bool visited[100] = {false};
vector<int> B;
vector<vector<int> > A;
vector<vector<int>> permute(vector<int> &nums) {
dfs(nums,A,0);
return A;
}
void dfs(vector<int> &nums, vector<vector<int>> &A, int step) {
int n = nums.size();
if (step == n) {
A.push_back(B);
return;
}
for (int i = 0; i <n;i++)
{
if(visited[i]==false)
{
visited[i]=true;
B.push_back(nums[i]);
dfs(nums,A,step+1);
visited[i]= false;
B.pop_back();
}
}
}
};