Leetcode Subsets II

12 篇文章 0 订阅

Leetcode Subsets II,本问题与Subsets 类似,只是需要处理重复子集问题,这个问题,我们可以使用每次从长度为m的子集构成长度为m+1的子集时,只对等值的元素添加一次,这样就可以保证没有重复现象,处理代码与Subsets类似,如下:

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

class Solution {
public:
    vector<vector<int> > subsetsWithDup(vector<int>& nums) {
        // Sort the nums for the left solution
        sort(nums.begin(), nums.end());
        int len = nums.size();
        // Init the result vector re
        vector<vector<int> > re;
        re.push_back(vector<int>());
        // The pos vector saves the last element postion of the re[i]
        // in the nums.
        vector<int> pos;
        // The first element in re is empty, so the first value is -1
        pos.push_back(-1);
        // The start and end position of the length k element in re
        int start = 0;
        int end = 0;
        while (re.back().size() != len) {
            // The elements of re with length k can be formed by the elements
            // of re with length k-1 append an element after its last element
            for (int i = start; i <= end; i ++) {
                for (int j = pos[i] + 1; j < len; j ++) {
                    // Every time construct the element with length k
                    // for element with length k-1 only include the elements
                    // in nums with equaling values once
                    if ((j == pos[i] + 1) || (j != 0 && nums[j] != nums[j - 1])) {
                        vector<int> temp(re[i]);
                        temp.push_back(nums[j]);
                        re.push_back(temp);
                        pos.push_back(j);
                    }
                }
            }
            //Update the start and end position of elements with length k
            start = end + 1;
            end = re.size() - 1;
        }
        return re;
    }
};

int main(int argc, char* argv[]) {
    Solution so;
    vector<int> test;
    test.push_back(2);
    test.push_back(1);
    test.push_back(2);
    test.push_back(3);
    vector<vector<int> > re = so.subsetsWithDup(test);
    for (int i = 0; i < re.size(); i ++) {
        for (int j = 0; j < re[i].size();j ++) {
            cout<<re[i][j]<<" ";
        }
        cout<<endl;
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值