给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。
解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。
示例 1:
输入:nums = [1,2,2] 输出:[[],[1],[1,2],[1,2,2],[2],[2,2]]
示例 2:
输入:nums = [0] 输出:[[],[0]]
提示:
1 <= nums.length <= 10-10 <= nums[i] <= 10- class Solution {
- public:
- vector
int>>res; - vector<int>path;
- void backtracking(vector<int>& nums,int startindex){
- res.push_back(path);
- if(startindex > nums.size()) return;
-
- for(int i = startindex;i < nums.size();i++){
- //去重逻辑,树层去重。set,used,i>startindex都可以
- //如果,不能排序或者没有排序,只能用set
- if(i > startindex && nums[i] == nums[i-1]){
- continue;
- }
- else{
- path.push_back(nums[i]);
- backtracking(nums,i+1);
- path.pop_back();
- }
- }
- }
- vector
int>> subsetsWithDup(vector<int>& nums) { - sort(nums.begin(),nums.end());
- backtracking(nums,0);
- return res;
- }
- };