90.子集Ⅱ

110 阅读1分钟

题目描述

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

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

题解

本题和子集这道题基本一样,只是会多加两步,排序和判断当前节点与前一个节点是否相等。

代码

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

题目链接(leetcode-cn.com/problems/su…)