首页 > 其他 > 详细

leetcode No77. Combinations

时间:2016-08-05 10:17:04      阅读:205      评论:0      收藏:0      [点我收藏+]

Question:

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

Algorithm:

二叉树构造,深度为k,元素为1~n。具体见程序。

Accepted Code:

class Solution {
public:
    vector<vector<int>> res;
    vector<vector<int>> combine(int n, int k) {
        vector<int> temp;
        BFS(temp,n,1,k);
        
        return res;
    }
    void BFS(vector<int> &temp,int n,int cur,int k)  //cur(1~n)
    {
        if(temp.size()==k)            //如果长度为k,则返回结果
        {
            res.push_back(temp);
            return;
        }
        for(int i=cur;i<=n;i++)       //遍历cur后到n的元素
        {
            vector<int> tmp=temp;    
            tmp.push_back(i);
            BFS(tmp,n,i+1,k);
        }
    }
};


leetcode No77. Combinations

原文:http://blog.csdn.net/u011391629/article/details/52125690

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