LeetCode 77. Combinations (组合)

Posted 几米空间

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 77. Combinations (组合)相关的知识,希望对你有一定的参考价值。

题目标签:Backtracking

  利用dfs,建立一个 tempList 递归加入 1.2.3.4....直到 size = k 就存入 res 返回;

  具体看code。

 

Java Solution: 

Runtime:  28 ms, faster than 22.99% 

Memory Usage: 42.6 MB, less than 6.52%

完成日期:12/07/2019

关键点:dfs

class Solution {
    
    List<List<Integer>> res;
    
    public List<List<Integer>> combine(int n, int k) {
        res = new ArrayList<>();
        List<Integer> tempList = new ArrayList<>();
        
        dfs(tempList, n, k);
        
        return res;
    }
    
    
    private void dfs(List<Integer> tempList, int n, int k) {
        if(tempList.size() == k) {
            res.add(new ArrayList<>(tempList));
            return;
        }
        
        // start from next number
        int i = tempList.isEmpty() ? 1 : tempList.get(tempList.size()-1) + 1;
        
        for(; i<=n; i++) {
            tempList.add(i);
            dfs(tempList, n, k);
            tempList.remove(tempList.size() - 1);
        }
    }
}

参考资料:n/a

LeetCode 题目列表 - LeetCode Questions List

题目来源:https://leetcode.com/

以上是关于LeetCode 77. Combinations (组合)的主要内容,如果未能解决你的问题,请参考以下文章

#Leetcode# 77. Combinations

Leetcode 77, Combinations

<LeetCode OJ> 77. Combinations

LeetCode77 Combinations

[LeetCode] 77. Combinations

[LeetCode] 77. Combinations