090 Subsets II 子集 II
Posted lina2014
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于090 Subsets II 子集 II的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 90. 子集 II(Subsets II)
[LeetCode] 90. Subsets II 子集合 II
[leetcode]90. Subsets II数组子集(有重)