leetcode 40. 组合总和 II
给定一个数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
candidates 中的每个数字在每个组合中只能使用一次。
说明:
所有数字(包括目标数)都是正整数。
解集不能包含重复的组合。
示例 1:
输入: candidates = [10,1,2,7,6,1,5], target = 8,
所求解集为:
[
[1, 7],
[1, 2, 5],
[2, 6],
[1, 1, 6]
]
示例 2:
输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
[1,2,2],
[5]
]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/combination-sum-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
采用回溯,先排序,主要是为去重用。之后,就可以回溯遍历,若是和为tager 就记录。
public List<List<Integer>> combinationSum2(int[] candidates, int target) { List<List<Integer>> all = new ArrayList<>(); if (candidates == null || candidates.length == 0) { return all; } Arrays.sort(candidates); List<Integer> list = new ArrayList<>(); find(candidates, target, all, list, 0); return all; } private static boolean find(int[] candidates, int target, List<List<Integer>> all, List<Integer> list, int indx) { if (target == 0) { all.add(new ArrayList<>(list)); return true; } if (target < 0) { return false; } int length = candidates.length; int size = list.size(); for (int i = indx; i < length; i++) { int candidate = candidates[i]; list.add(candidate); boolean b = find(candidates, target - candidate, all, list, i + 1); list.remove(size); if (!b) { break; } while (++i < length) { if (candidates[i] != candidate) { break; } } --i; } return true; }