Subsets

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],
  []
]

 

 Code:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Solution {
public:
    void findSub(vector<int> &S, int &n, int level, vector<int> &buf, vector<vector<int>> &res){
        if(buf.size()==n){
            res.push_back(buf);
            return;
        }
        for(int i=level;i<S.size();i++){
            buf.push_back(S[i]);
            findSub(S,n,i+1,buf,res);
            buf.pop_back();
        }
    }
    vector<vector<int> > subsets(vector<int> &S) {
        vector<vector<int>> res;
        vector<int> buf;
        sort(S.begin(),S.end());
        for(int i=0;i<=S.size();i++)
            findSub(S,i,0,buf,res);
        return res;
    }
};

  

 

posted @   WinsCoder  阅读(133)  评论(0编辑  收藏  举报
(评论功能已被禁用)
编辑推荐:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
阅读排行:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· ShadowSql之.net sql拼写神器
· Excel百万数据如何快速导入?
· 无需WebView,Vue也能开发跨平台桌面应用
点击右上角即可分享
微信分享提示