2023每日刷题(七十七)
Leetcode—40.组合总和II
算法思想
实现代码
class Solution {
public:vector<vector<int>> combinationSum2(vector<int>& candidates, int target) {vector<vector<int>> ans;vector<int> path;sort(candidates.begin(), candidates.end());function<void(int, int)> dfs = [&](int start, int res) {if(res == 0) {ans.emplace_back(path);return;}for(int j = start; j < candidates.size(); j++) {if(res - candidates[j] < 0) {return;}// 如果该元素与左边元素相等,说明该搜索分支重复,直接跳过if(j > start && candidates[j] == candidates[j - 1]) {continue;}path.emplace_back(candidates[j]);dfs(j + 1, res - candidates[j]);path.pop_back();}};dfs(0, target);return ans;}
};
运行结果
之后我会持续更新,如果喜欢我的文章,请记得一键三连哦,点赞关注收藏,你的每一个赞每一份关注每一次收藏都将是我前进路上的无限动力 !!!↖(▔▽▔)↗感谢支持!