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

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

作者: 怎样会更好 | 来源:发表于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);
        }
    }
}

相关文章

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

    Given a collection of numbers that might contain duplicat...

  • python内置函数-排列组合函数

    product 笛卡尔积(有放回抽样排列) permutations 排列(不放回抽样排列) combinatio...

  • 排列组合库

    product 笛卡尔积(有放回抽样排列) permutations 排列(不放回抽样排列) combinatio...

  • 递归与回溯:78.子集

    /** 题目 给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复...

  • 子集

    给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 示例...

  • 子集

    给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 示例...

  • 78.子集

    题目给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 ...

  • 78. 子集

    给定一组不含重复元素的整数数组nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 示例:...

  • 78. 子集-leetcode

    给定一组不含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 示例...

  • 子集 II

    给定一个可能包含重复元素的整数数组 nums,返回该数组所有可能的子集(幂集)。 说明:解集不能包含重复的子集。 ...

网友评论

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

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