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

LeetCode Combinations

时间:2014-06-30 12:49:12      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   c   for   leetcode   

class Solution {
private:
    vector<vector<int> > res;
public:
    vector<vector<int> > combine(int n, int k) {
        res.clear();
        vector<int> path;
        dfs(1, n, k, path);
        return res;
    }
    
    void dfs(int lower, int upper, int level, vector<int>& path) {
        if (level == 0) {
            res.push_back(path);
            return;
        }
        for (int i=lower; i<= upper - level + 1; i++) {
            path.push_back(i);
            dfs(i + 1, upper, level -1, path);
            path.pop_back();
        }
    }
};

常规dfs

LeetCode Combinations,布布扣,bubuko.com

LeetCode Combinations

标签:style   blog   color   c   for   leetcode   

原文地址:http://www.cnblogs.com/lailailai/p/3813860.html

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