题目描述
给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的数字可以无限制重复被选取。
方法:
递归:
终止条件:candidates数组被全部用完 或者 target <= 0
每次可以选择跳过当前的数,即dfs(i+1),也可以选择使用当前的数,即dfs(i)
因为每个数字都可以被无限制地重复使用,所以搜索的下标仍为i
代码:
class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> res = new ArrayList<>();
ArrayList<Integer> path = new ArrayList<>();
dfs(res,path,candidates,target,0);
return res;
}
public void dfs(List<List<Integer>> res,ArrayList<Integer> path,int[] candidates, int target,int begin){
if(begin == candidates.length){
return;
}
if(target == 0){
res.add(new ArrayList<Integer>(path));
return;
}
dfs(res,path,candidates,target,begin+1);
if(target >= candidates[begin]){
path.add(candidates[begin]);
dfs(res,path,candidates,target-candidates[begin],begin);
path.remove(path.size()-1);
}
}
}