原题地址:https://leetcode-cn.com/problems/permutations/
题目描述:
给定一个没有重复数字的序列,返回其所有可能的全排列。
示例:
输入: [1,2,3]
输出:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
解题方案:
时隔一年,写回溯变难了好多ioi 当初怎么说出比较简单这种鬼话的…
代码:
class Solution {
List<List<Integer>> res;
public List<List<Integer>> permute(int[] nums) {
res = new ArrayList<>();
List<Integer> ans = new ArrayList<>();
boolean[] visited = new boolean[nums.length];
backtrack(visited, nums, ans);
return res;
}
public void backtrack(boolean[] visited, int[] nums, List<Integer> ans)
{
int n = nums.length;
if(ans.size() == n)
res.add(new ArrayList(ans));
for(int i = 0; i < n; i ++)
{
if(visited[i] == false)
{
visited[i] = true;
ans.add(nums[i]);
backtrack(visited, nums, ans);
ans.remove(ans.size() - 1);
visited[i] = false;
}
}
}
}