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

LeetCode:Subsets

时间:2014-06-18 00:39:26      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:leetcode

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

解题思路:
   
    由于题目已经说明S集合中数字都不同,所以子集一定有2^n个,初步估计一下后台数据中的n值

应该不会大于32的,所以我们可用一个整数的二进制表示某个数字时候是否出现在集合中,然后枚举

即可. 

解题代码:

class Solution {
public:
    vector<vector<int> > subsets(vector<int> &S) 
    {
        int n = S.size();
        sort(S.begin(),S.end());
        vector<vector<int> > res;
        for (int i = 0; i < 1 << n; ++i)
        {
            vector<int> vec ;
            int tmp = i , cnt = 0 ;
            while (tmp)
            {
                if (tmp & 1)
                    vec.push_back(S[cnt]);
                tmp >>= 1 , ++cnt ;
            }
            res.push_back(vector<int>(vec.begin(),vec.end()));
        }
        return res;
    }
};


LeetCode:Subsets,布布扣,bubuko.com

LeetCode:Subsets

标签:leetcode

原文地址:http://blog.csdn.net/dream_you_to_life/article/details/31789007

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