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

46. Permutations 全排列

时间:2020-06-29 09:55:51      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:nta   play   input   backtrack   lis   back   size   click   ssi   

Given a collection of distinct integers, return all possible permutations.

Example:

Input: [1,2,3]
Output:
[
  [1,2,3],
  [1,3,2],
  [2,1,3],
  [2,3,1],
  [3,1,2],
  [3,2,1]
]

全排列是所有元素,所以index必须从0开始
技术图片
class Solution {
    public List<List<Integer>> permute(int[] nums) {
    List<List<Integer>> list = new ArrayList<>();
    Arrays.sort(nums);
    backtrack(nums, new ArrayList<>(), list);
    return list;
}

private void backtrack(int [] nums, List<Integer> tempList, List<List<Integer>> list){
    if (tempList.size() == nums.length)
        list.add(new ArrayList<>(tempList));
    
        for(int i = 0; i < nums.length; i++){        
        if(tempList.contains(nums[i])) continue;
            
        tempList.add(nums[i]);
        backtrack(nums, tempList, list);
        tempList.remove(tempList.size() - 1);
    }
    
} 
}
View Code

 



46. Permutations 全排列

标签:nta   play   input   backtrack   lis   back   size   click   ssi   

原文地址:https://www.cnblogs.com/immiao0319/p/13205980.html

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