跟着carl学算法,本系列博客仅做个人记录,建议大家都去看carl本人的博客,写的真的很好的!
代码随想录
LeetCode:40.组合总和II
给定一个候选人编号的集合 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的每个数字在每个组合中只能使用 一次 。
注意:解集不能包含重复的组合。
示例 1:
输入: candidates = [10,1,2,7,6,1,5], target = 8,
输出:
[
[1,1,6],
[1,2,5],
[1,7],
[2,6]
]
示例 2:
输入: candidates = [2,5,2,1,2], target = 5,
输出:
[
[1,2,2],
[5]
]
注意这里的去重的逻辑,需要再树层上进行去重,而不是树枝上去重,path
中的元素是可以重复的,而res
里面的元素不能重复
public List<List<Integer>> combinationSum2(int[] candidates, int target) {
Arrays.sort(candidates);
List<List<Integer>> res = new ArrayList<>();
backtracking(candidates, target, 0, 0, new ArrayList<>(), res);
return res;
}
private void backtracking(int[] candidates, int target, int index, int sum, List<Integer> path,
List<List<Integer>> res) {
if (sum == target) {
res.add(new ArrayList(path));
return;
}
for (int i = index; i < candidates.length; i++) {
// 注意这里是i > index(进行树层去重) 而不是i > 0(会少[1,1,6]这种情况)
if (i > index && candidates[i] == candidates[i - 1])
continue;
if (sum + candidates[i] > target)
break;
path.add(candidates[i]);
backtracking(candidates, target, i + 1, sum + candidates[i], path, res);
path.removeLast();
}
}
标签:index,target,int,res,40,II,candidates,path,LeetCode
From: https://blog.csdn.net/xiaoshiguang3/article/details/145148527