码迷,mamicode.com
首页 > 其他好文 > 详细

Subsets 集合子集 回溯

时间:2014-11-21 01:17:47      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   ar   color   os   sp   

Given a set of distinct integers, 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,3], a solution is:

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

 

Hide Tags
 Array Backtracking Bit Manipulation
 
递归,放与不放的问题。转化成生成树

bubuko.com,布布扣

class Solution {
private:
    vector<vector<int> > ret;
public:
    void generate(vector<int> vet,vector<int> &S,int i){
        if(i==S.size()){
            ret.push_back(vet);
            return;
        }
        generate(vet,S,i+1);        //相当于取右子树
        vet.push_back(S[i]);             
        generate(vet,S,i+1);       //相当于取左子树
    }
    vector<vector<int> > subsets(vector<int> &S) {
        ret.clear();
        sort(S.begin(),S.end());
        vector<int> vet;
        generate(vet,S,0);
        return ret;
    }
};

 

Subsets 集合子集 回溯

标签:des   style   blog   http   io   ar   color   os   sp   

原文地址:http://www.cnblogs.com/li303491/p/4111860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!