问题描述
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],]
简单来讲,就是输入参数 n和k , n>=k; 问从1-n中取k个数,有多少种可能,并把所有可能通过数组的方式存起来;
解题思路
分治法
将问题分解成两个子问题:
- (n-1, k) 不包含n问题;
- (n-1,k-1) 包含n问题
参考代码:
github