目录
题目
思路
代码
题目
给你一个整数数组 nums
,其中可能包含重复元素,请你返回该数组所有可能的 子集(幂集)。
解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。
示例 1:
输入:nums = [1,2,2] 输出:[[],[1],[1,2],[1,2,2],[2],[2,2]]
示例 2:
输入:nums = [0] 输出:[[],[0]]
思路
看力扣40 组合II
代码
class Solution {List<List<Integer>> result=new ArrayList<>();//最后结果LinkedList<Integer> path=new LinkedList<>();boolean[] used;//用来判断是否用过public List<List<Integer>> subsetsWithDup(int[] nums) {if(nums.length==0){result.add(path);return result;}Arrays.sort(nums);//排序used=new boolean[nums.length];backTracking(nums,0);return result;}public void backTracking(int [] nums,int startIndex){result.add(new ArrayList<>(path));if(startIndex>nums.length){return;}for(int i=startIndex;i<nums.length;i++){if(i>0&&nums[i]==nums[i-1]&& !used[i-1]){//树层去重continue;}path.add(nums[i]);used[i]=true;backTracking(nums,i+1);path.removeLast();//回溯used[i]=false;}}
}