美文网首页
有重复的数组,球排列的笛卡尔集

有重复的数组,球排列的笛卡尔集

作者: 怎样会更好 | 来源:发表于2018-12-20 20:34 被阅读0次

    Given a collection of numbers that might contain duplicates, return all possible unique permutations.

    class Solution {
        public List<List<Integer>> permuteUnique(int[] nums) {
            List<List<Integer>> res = new ArrayList<>();
            Arrays.sort(nums);
            permu(nums,res,new boolean[nums.length],new ArrayList<Integer>(),0);
            return res;
        }
        public void permu(int[] nums,List<List<Integer>> res,boolean[] visited,ArrayList<Integer> cur,int index){
            if(index == nums.length){
                res.add(new ArrayList<Integer>(cur));
                return;
            }
            for(int i = 0,len = nums.length;i<len;i++){
                //避免逆序操作。
                if(visited[i] || (i!=0&&nums[i-1] == nums[i] && !visited[i-1])){
                    continue;
                }
                visited[i] = true;
                cur.add(nums[i]);
                permu(nums,res,visited,cur,index+1);
                visited[i] = false;
                cur.remove(cur.size()-1);
            }
        }
    }
    

    相关文章

      网友评论

          本文标题:有重复的数组,球排列的笛卡尔集

          本文链接:https://www.haomeiwen.com/subject/ramukqtx.html