090 Subsets II 子集 II
给定一个可能包含重复整数的列表,返回所有可能的子集(幂集)。
注意事项:解决方案集不能包含重复的子集。
例如,如果 nums = [1,2,2],答案为:
[
[2],
[1],
[1,2,2],
[2,2],
[1,2],
[]
]
详见:https://leetcode.com/problems/subsets-ii/description/
Java实现:
class Solution { public List<List<Integer>> subsetsWithDup(int[] nums) { List<List<Integer>> res=new ArrayList<List<Integer>>(); List<Integer> out=new ArrayList<Integer>(); Arrays.sort(nums); helper(nums,0,out,res); return res; } private void helper(int[] nums,int start,List<Integer> out,List<List<Integer>> res){ res.add(new ArrayList<Integer>(out)); for(int i=start;i<nums.length;++i){ out.add(nums[i]); helper(nums,i+1,out,res); out.remove(out.size()-1); while(i+1<nums.length&&nums[i]==nums[i+1]){ ++i; } } } }
参考:https://www.cnblogs.com/grandyang/p/4310964.html