给你一个 无重复元素 的整数数组 candidates
和一个目标整数 target
,找出 candidates
中可以使数字和为目标数 target
的 所有 不同组合 ,并以列表形式返回。你可以按 任意顺序 返回这些组合。
candidates
中的 同一个 数字可以 无限制重复被选取 。如果至少一个数字的被选数量不同,则两种组合是不同的。
对于给定的输入,保证和为 target
的不同组合数少于 150
个。
示例 1:
输入:candidates =[2,3,6,7]
, target =7
输出:[[2,2,3],[7]] 解释: 2 和 3 可以形成一组候选,2 + 2 + 3 = 7 。注意 2 可以使用多次。 7 也是一个候选, 7 = 7 。 仅有这两种组合。
示例 2:
输入: candidates = [2,3,5],
target = 8
输出: [[2,2,2,2],[2,3,3],[3,5]]
示例 3:
输入: candidates =[2],
target = 1 输出: []
class Solution { public: // 存储所有可能组合的结果集 vector<vector<int>> res; // 临时存储当前递归路径下的组合 vector<int> temp; // 回溯函数,用于生成所有和为target的组合 // candidates: 可选的数字列表 // target: 目标和 // start: 当前搜索开始的索引位置 void backtrack(vector<int>& candidates, int target, int start) { // 如果目标和为0,说明找到了一组符合条件的组合 if (target == 0) { // 将当前组合加入结果集中 res.push_back(temp); return; } // 如果目标和小于0,说明当前组合已不符合条件,直接返回 if (target < 0) { return; } // 遍历从start到candidates末尾的所有元素 for (int i = start; i < candidates.size(); i++) { // 将当前元素加入当前组合中 temp.push_back(candidates[i]); // 递归调用,继续寻找剩余部分的组合,允许重复使用当前元素 backtrack(candidates, target - candidates[i], i); // 回溯:撤销上一步的选择,尝试其他可能性 temp.pop_back(); } } // 主函数,返回所有和为target的不同组合 // candidates: 可选的数字列表 // target: 目标和 vector<vector<int>> combinationSum(vector<int>& candidates, int target) { // 调用回溯函数开始搜索 backtrack(candidates, target, 0); // 返回最终找到的所有组合 return res; } };
标签:target,组合,start,vector,candidates,回溯,总和 From: https://www.cnblogs.com/yueshengd/p/18644792