Combinations
程序员文章站
2022-05-29 18:22:19
...
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],
]
有关组合的问题,给定了一个限定条件,长度为k的组合。同样用回溯法,回溯的条件就是每个结果的长度为k。往前搜索的时候,每次都加1,知道遍历完所有的可能。代码如下:
For example,
If n = 4 and k = 2, a solution is:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]
有关组合的问题,给定了一个限定条件,长度为k的组合。同样用回溯法,回溯的条件就是每个结果的长度为k。往前搜索的时候,每次都加1,知道遍历完所有的可能。代码如下:
public class Solution { public List<List<Integer>> combine(int n, int k) { LinkedList<Integer> list = new LinkedList<Integer>(); List<List<Integer>> llist = new LinkedList<List<Integer>>(); if(n < 1) return llist; getCombine(1, n, k, list, llist); return llist; } public void getCombine(int start, int n, int k, LinkedList<Integer> list, List<List<Integer>> llist) { if(list.size() == k) { llist.add(new LinkedList<Integer>(list)); return; } for(int i = start; i <= n; i++) { list.add(i); getCombine(i + 1, n, k, list, llist); list.removeLast(); } } }
上一篇: Combination Sum II
下一篇: UML类图几种关系的总结(转载http://blog.csdn.net/tianhai110/article/details/6339565)
推荐阅读
-
Python使用combinations实现排列组合的方法
-
C++实现LeetCode(Combinations 组合项)
-
Leetcode 17. Letter Combinations of a Phone Number(python)
-
LeetCode 17. Letter Combinations of a Phone Number
-
Letter Combinations of a Phone Number(C++)
-
Python使用combinations实现排列组合的方法
-
leetcode17:Letter Combinations of a Phone Number
-
LeetCode 17. 电话号码的字母组合 Letter Combinations of a Phone Number
-
Combinations
-
leetcode--17. Letter Combinations of a Phone Number