力扣LeetCode[每日一题]:给定两个整数 n 和 k,返回 1 ... n 中所有可能的 k 个数的组合。

给定两个整数 n 和 k,返回 1 … n 中所有可能的 k 个数的组合。

示例:

输入: n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]

===========================================================
class Solution {
public:
vector<vector> combine(int n, int k) {
dfs(temp,n,k,0);
return res;
}
private:
vector<vector> res;
vector temp;
void dfs(vector& temp,int n,int k,int x){
if(temp.size()==k){
res.push_back(temp);
return;
}
for(int i=x+1;i<=n;i++){
temp.push_back(i);
dfs(temp,n,k,i);
temp.pop_back();
}
}
};`

在这里插入图片描述结果

猜你喜欢

转载自blog.csdn.net/weixin_41454036/article/details/108463273