Combinations
Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.
For example,
If n = 4 and k = 2, a solution is:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]
回溯法
复杂度
时间复杂度最坏情况O(n!)空间栈一样O(n!)
代码
public List<List<Integer>> combine(int n, int k) {
List<List<Integer>> res = new ArrayList<List<Integer>>();
if (n <= 0 || k <= 0) {
return res;
}
List<Integer> tem = new ArrayList<Integer>();
helper(tem, res, 1, n, k);
return res;
}
public void helper(List<Integer> tem, List<List<Integer>> res, int index, int n, int k) {
if (tem.size() == k) {
res.add(new ArrayList<Integer>(tem));
return;
}
for (int i = index; i <= n; i++) {
tem.add(i);
helper(tem, res, i + 1, n, k);
tem.remove(tem.size() - 1);
}
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。