欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

90. 子集 II

程序员文章站 2022-05-21 23:28:48
...

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

说明:解集不能包含重复的子集。

示例:

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/subsets-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
    public List<List<Integer>> subsetsWithDup(int[] nums) {
        List<List<Integer>> res = new ArrayList<>();
        Arrays.sort(nums);
        backtrack(nums, 0, new ArrayList<>(), res);
        return res;
    }
    private void backtrack(int[] nums, int begin, List<Integer> path, List<List<Integer>> res){
        res.add(new ArrayList<>(path));
        for(int i=begin; i<nums.length; ++i){
            if(i>begin && nums[i]==nums[i-1]){
                continue;
            }
            path.add(nums[i]);
            backtrack(nums, i+1, path, res);
            path.remove(path.size()-1);
        }
    }
}