首页 > 其他 > 详细

Combinations

时间:2015-01-17 11:12:51      阅读:166      评论:0      收藏:0      [点我收藏+]
class Solution {
public:
	vector<vector<int>> result;
	vector<int> temp;
    vector<vector<int> > combine(int n, int k) {
 
		temp.resize(k);
		GetCombine(n,k);
		return result;
		

    }
    void GetCombine(int n, int k)
    {
        if(k==0)
        {
          result.push_back(temp);
		  return ;
		}
        for(int i=n; i>=k;i--)
        {
           temp[k-1]=i;
           GetCombine(i-1,k-1);	
		}

	}
	
};

  

Combinations

原文:http://www.cnblogs.com/xgcode/p/4230169.html

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