2023每日刷题(六十五)
Leetcode—77.组合
算法思想
实现代码
class Solution {
public:
vector<vector<int>> combine(int n, int k) {
vector<vector<int>> ans;
vector<int> path;
function<void(int)> dfs = [&](int i) {
int d = k - path.size();
if(d == 0) {
ans.emplace_back(path);
return;
}
// i >= d
for(int j = i; j >= d; j--) {
path.push_back(j);
dfs(j - 1);
path.pop_back();
}
};
dfs(n);
return ans;
}
};
运行结果
选或者不选的实现代码
class Solution {
public:
vector<vector<int>> combine(int n, int k) {
vector<vector<int>> ans;
vector<int> path;
function<void(int)> dfs = [&](int i) {
int d = k - path.size();
if(d == 0) {
ans.emplace_back(path);
return;
}
// 不选
if(i > d) {
dfs(i - 1);
}
// 选
path.push_back(i);
dfs(i - 1);
path.pop_back();
};
dfs(n);
return ans;
}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!