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

[LeetCode] Subsets (bfs的vector实现)

时间:2014-08-15 17:18:39      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   io   strong   for   

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],
  []
]
class Solution {
public:
    vector<vector<int> > subsets(vector<int> &S) {
        vector<vector<int> > res;
        int len = S.size();
        vector<int> temp0,temp;
        res.push_back(temp);
        int start = 0,end = 1;
        
            
            while(start < end)
            {
                temp = res[start];
                temp0 = temp;
                start++;
                
                int n = 0;
                for(int i=0;i<len;i++){
                    if(find(temp.begin(),temp.end(),S[i])==temp.end()){
                        temp.push_back(S[i]);
                        sort(temp.begin(),temp.end());
                        if(find(res.begin(),res.end(),temp)==res.end()){
                           res.push_back(temp);
                           n++;
                        }    
                        temp = temp0;
                    }//end if
                }//end for
                end += n;
            }//end while
        return res;
    }//end func
};

 

[LeetCode] Subsets (bfs的vector实现),布布扣,bubuko.com

[LeetCode] Subsets (bfs的vector实现)

标签:des   style   blog   color   os   io   strong   for   

原文地址:http://www.cnblogs.com/Xylophone/p/3915101.html

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