给定两个整数 n 和 k,返回范围 [1, n] 中所有可能的 k 个数的组合。
你可以按 任何顺序 返回答案。
示例 1:
输入:n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]
示例 2:
输入:n = 1, k = 1
输出:[[1]]
提示:
1 <= n <= 20
1 <= k <= n
class Solution {
public static List<List<Integer>> combine(int n, int k) {
List<List<Integer>> lists = new ArrayList<List<Integer>>();
combine1(n,k,1,new ArrayList<Integer>(),lists,0);
return lists;
}
public static void combine1(int n,int k,int i,List<Integer> list,List<List<Integer>> lists,int index) {
if (index>k) {
return;
}
if (index == k) {
lists.add(new ArrayList<Integer>(list));
return;
}
for (int j = i,d=index;j<=n;j++,d++) {
list.add(j);
combine1(n,k,j+1,list,lists,d+1);
list.remove(d);
d--;
}
}
}