题目详情
Given a collection of distinct numbers, return all possible permutations.题目要求我们对于输入的数字序列,给出它们的全排列。
例如,
[1,2,3] 有如下的全排列:
[
[1,2,3],
[1,3,2],
[2,1,3],
[2,3,1],
[3,1,2],
[3,2,1]
]
想法
- 这道题是用回溯法的思想解决的。
- 回溯法在包含问题的所有解的解空间树中,按照深度优先的策略,从根节点出发深度优先搜索,搜索到某个点的时候,先判断该节点是否包含问题的解,如果包含就继续探索,否则就逐层向根节点回溯。
解法
public List<List<Integer>> permute(int[] nums) {
List<List<Integer>> res = new ArrayList<List<Integer>>();
backtrack(res,new ArrayList<Integer>(),nums);
return res;
}
public void backtrack(List<List<Integer>> res ,List<Integer> tempList,int[] nums){
if(tempList.size() == nums.length){
res.add(new ArrayList<>(tempList));
}else{
for(int i=0;i<nums.length;i++){
if(tempList.contains(nums[i])){
continue;
}
tempList.add(nums[i]);
backtrack(res,tempList,nums);
tempList.remove(tempList.size()-1);
}
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。