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

集合的子集

时间:2017-04-21 10:04:24      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:res   pre   strong   end   nbsp   div   begin   swa   个数   

题目描述

请编写一个方法,返回某集合的所有非空子集。

给定一个int数组A和数组的大小int n,请返回A的所有非空子集。保证A的元素个数小于等于20,且元素互异。各子集内部从大到小排序,子集之间字典逆序排序,见样例。

测试样例:
class Permutation {
public:
    vector<string> getPermutation(string A) {
        vector<string> res;
        if(A.size() == 0)
            return res;
        
        int cur = 0;        
        permutation(A,res,cur);
        sort(res.begin(),res.end(),greater<string>());
        
        return res;
    }
    
    void permutation(string A,vector<string> &res,int cur){
        int len = A.size();
        
        if(cur == len - 1){
            res.push_back(A);
            return;
        }
        
        for(int i = cur;i < len;i++){
            swap(A[i],A[cur]);
            permutation(A,res,cur+1);
            swap(A[i],A[cur]);
        }
    }
};

 

集合的子集

标签:res   pre   strong   end   nbsp   div   begin   swa   个数   

原文地址:http://www.cnblogs.com/xiuxiu55/p/6741551.html

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