077 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:
|
|
思路
利用回溯的方法来计算组合数。
我们知道组合数的k,我们就可以知道回溯的时候要走几层。知道组合数的n,我们可以知道组合数的总数目。
|
|
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:
|
|
利用回溯的方法来计算组合数。
我们知道组合数的k,我们就可以知道回溯的时候要走几层。知道组合数的n,我们可以知道组合数的总数目。
|
|