leetcode 77. 组合
题意
给定两个整数 n 和 k,返回 1 … n 中所有可能的 k 个数的组合。
示例:
输入: n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]
解题思路
求解全排列的通法,使用回溯和递归的思想。
代码
class Solution {
public List<List<Integer>> combine(int n, int k) {
List<List<Integer>> res = new ArrayList<List<Integer>>();
backtrack(res, n, 1, k, new ArrayList<Integer>());
return res;
}
private void backtrack(List<List<Integer>> res, int n, int num, int k, List<Integer> list)
{
if (list.size() == k)
{
res.add(new ArrayList<Integer>(list));
}
else
{
for (int i = num; i <= n; i++)
{
list.add(i);
backtrack(res, n, i + 1, k, list);
list.remove(list.size() - 1);
}
}
}
}