首页 > 其他 > 详细

【LeetCode】Subsets (2 solutions)

时间:2014-12-05 12:19:56      阅读:246      评论:0      收藏:0      [点我收藏+]

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

 

参照Subsets II的解法

 

解法一:

class Solution {
public:
    vector<vector<int> > subsets(vector<int> &S) {
        vector<vector<int> > result;
        int size = S.size();
        for(int i = 0; i < pow(2.0, size); i ++)
        {//2^size subsets
            vector<int> cur;
            int tag = i;
            for(int j = size-1; j >= 0; j --)
            {//for each subset, the binary presentation has size digits
                if(tag%2 == 1)
                    cur.push_back(S[j]);
                tag >>= 1;
                if(!tag)
                    break;
            }
            sort(cur.begin(), cur.end());
            result.push_back(cur);
        }
        return result;
    }
};

bubuko.com,布布扣

 

解法二:

class Solution {
public:
    vector<vector<int> > subsets(vector<int> &S) {
        vector<vector<int> > result;
        vector<int> cur;
        result.push_back(cur);  //empty set
        sort(S.begin(), S.end());
        for(int i = 0; i < S.size(); i ++)
        {
            int exist = result.size();
            for(int j = 0; j < exist; j ++)
            {
                cur = result[j];
                cur.push_back(S[i]);
                result.push_back(cur);
            }
        }
        return result;
    }
};

bubuko.com,布布扣

【LeetCode】Subsets (2 solutions)

原文:http://www.cnblogs.com/ganganloveu/p/4146250.html

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