首页 > 其他 > 详细

Subsets II

时间:2014-11-21 14:01:37      阅读:233      评论:0      收藏:0      [点我收藏+]

Given a collection of integers that might contain duplicates, S, return all possible subsets.

Note:

  • Elements in a subset must be in non-descending order.
  • The solution set must not contain duplicate subsets.

 

For example,
If S = [1,2,2], a solution is:

[
  [2],
  [1],
  [1,2,2],
  [2,2],
  [1,2],
  []
]

 

Hide Tags
 Array Backtracking
 
与  1 相同,需考虑重复
class Solution {
private:
    vector<vector<int> > ret;
public:
    void generate(vector<int> vet,vector<int> &S,int i){
        if(i==S.size()){
            for(int k=0;k<ret.size();k++){
                if(vet==ret[k])          //去除重复
                    return;
            }
            ret.push_back(vet);
            return;
        }
        generate(vet,S,i+1);        //相当于取右子树
        vet.push_back(S[i]);             
        generate(vet,S,i+1);       //相当于取左子树
    }
    vector<vector<int> > subsetsWithDup(vector<int> &S) {  
        sort(S.begin(),S.end());
        generate(vector<int>(),S,0);
        return ret;
    }
};

 

Subsets II

原文:http://www.cnblogs.com/li303491/p/4112629.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!