给定两个整数 n 和 k,返回 1 … n 中所有可能的 k 个数的组合。
示例:
输入: n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]
public class CombineNK {
public List<List<Integer>> combine(int n, int k) {
List<List<Integer>> res = new ArrayList<>();
if (n < 1 || k < 1 || k > n) {
return res;
}
List<Integer> list = new ArrayList<>();
huishuo(res, list, n, k, 1);
return res;
}
private void huishuo(List<List<Integer>> res, List<Integer> list, int n, int k, int start) {
if (list.size() == k) {
res.add(new ArrayList<>(list));
return;
}
for (int i = start; i <= n; i++) {
list.add(i);
huishuo(res, list, n, k, i + 1);
list.remove(list.size() - 1);
}
}
}