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

Combinations [leetcode]

时间:2014-07-16 19:29:31      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   数据   for   

描述: Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.

For example,
If n = 4 and k = 2, a solution is:

[
  [2,4],
  [3,4],
  [2,3],
  [1,2],
  [1,3],
  [1,4],
]

思路:模拟手工组合C(n,k)的方法, 用pos 标记当前的位置,从pos ,n 中间选取k个数据,

class Solution {
public:

    void choose(int n, int k, int pos, vector<int>&array, vector<vector<int> >&ret)
    {
        if(k == 0)
        {
            ret.push_back(array);
            return;
        }

        for(int i = pos ; i <= n; ++i)
        {
            array.push_back(i);
            choose(n, k-1, i+1, array, ret);
            array.resize(array.size()-1);
        }

        return;
    }

    vector<vector<int> > combine(int n, int k) 
    {
        vector<vector<int> > ret ;
        if(n == 0 || k == 0 || k > n)
            return ret;

        vector<int> array;
        choose(n, k, 1, array, ret);
        return ret;
    }
};

 

 

Combinations [leetcode],布布扣,bubuko.com

Combinations [leetcode]

标签:style   blog   color   os   数据   for   

原文地址:http://www.cnblogs.com/memoryh/p/3841258.html

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