题目链接:39.组合总和
题解:
递归同一元素可重复选取的解决,用减法减到 0 为止!
当然也可以加法加到目标值,都行!
题目简述:
给定一个无重复元素的序列,找到符合目标值的所有组合,不重复的组合。
题解:
使用深搜即可,关键点,每个数可以选不止一次。
本题可进行累加,也可以进行累减。推荐使用累减版本!
具体解决:
dfs(vector<int>& candidates, int target, int start)
start
用来指向从该数组的哪一个数进行循环。
- 递归出口:
target < 0
,即已经将目标值减没了,可以return
了。
target == 0
,恰好等于0,则说明找到了一种组合,将当前有效路径path
加入答案res
- 从
start
开始循环,path
添加当前选取值,进行下一轮dfs(candidates, target - candidates[i], i)
,start仍然从i
开始即可,选同一个数的最多次,超过即target < 0
,直接返回
- 同一个数的最多次选择完毕将会进入下一个数的选取。
for
循环内dfs
的结束有两种情况,一是当前数的次数已经选到了最多,二是当前次数条件下无解。然后进行回溯,取消path
中的路径,找下一个数的多次选取情况。
AC代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| class Solution { public: vector<vector<int>> res; vector<int> path; vector<vector<int>> combinationSum(vector<int>& candidates, int target) { dfs(candidates, target, 0); return res; } void dfs(vector<int>& candidates, int target, int start){ if(target < 0) return; if(target == 0){ res.push_back(path); return; } for(int i = start; i < candidates.size(); i++){ path.push_back(candidates[i]); dfs(candidates, target - candidates[i], i); path.pop_back(); } } };
class Solution { public: vector<vector<int>> res; vector<int> path; vector<vector<int>> combinationSum(vector<int>& candidates, int target) { dfs(candidates, target, 0, 0); return res; } void dfs(vector<int>& candidates, int target, int start, int num){ if(target < num) return; if(target == num){ res.push_back(path); return; } for(int i = start; i < candidates.size(); i++){ path.push_back(candidates[i]); dfs(candidates, target, i, num + candidates[i]); path.pop_back(); } } };
|