[leetcode] 77. 组合
Posted ACBingo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 77. 组合相关的知识,希望对你有一定的参考价值。
递归枚举搜就好
class Solution {
public List<List<Integer>> combine(int n, int k) {
List<List<Integer>> ans = new ArrayList<>();
List<Integer> cur = new ArrayList<>();
dfs(n, k, 0, cur, ans);
return ans;
}
private void dfs(int n, int k, int last, List<Integer> cur, List<List<Integer>> ans) {
if (k == 0) {
ans.add(new ArrayList<>(cur));
return;
}
for (Integer i = last + 1; i <= n; i++) {
cur.add(i);
dfs(n, k - 1, i, cur, ans);
cur.remove(i);
}
}
}
以上是关于[leetcode] 77. 组合的主要内容,如果未能解决你的问题,请参考以下文章