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

47. 全排列 II

时间:2019-11-25 13:34:46      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:amp   作用   nbsp   klist   col   重复数   bsp   slist   style   

题目描述:

  给定一个可包含重复数字的序列,返回所有不重复的全排列。

  示例:

    输入: [1,1,2]
    输出:
      [
        [1,1,2],
        [1,2,1],
        [2,1,1]
      ]

题解:

class Solution {
    public List<List<Integer>> permuteUnique(int[] nums) {
       List<Integer> list = new ArrayList<>();
        //以下的操作需要保证顺序性
        Arrays.sort(nums);
        for(int index =0;index<nums.length;index++){
            list.add(nums[index]);
        }
        List<List<Integer>> resList = new ArrayList<>();
        backList(list,resList,new Stack<>(),nums.length);
        return resList;
    }

    public static void backList(List<Integer> list, List<List<Integer>> resList, Stack<Integer> res, Integer in){
        if(res.size() == in){
            resList.add(new ArrayList<>(res));
            return;
        }
        for(int li=0;li<list.size();li++ ){
            //对于重复元素,大概就是如此解决,大于起始元素
            if(li>0 && list.get(li) == list.get(li-1)){continue;}
            res.push(list.get(li));
            //相当于状态重置的作用。或者使用一个列表用来表示哪些数据已经使用
            List temp = new ArrayList<>(list);
            temp.remove(list.get(li));
            backList(temp,resList,res,in);
            temp = null;
            res.pop();

        }
    }
}    

 

47. 全排列 II

标签:amp   作用   nbsp   klist   col   重复数   bsp   slist   style   

原文地址:https://www.cnblogs.com/mayang2465/p/11927018.html

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