40. 组合总和 II(java)

给定一个数组 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
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
class Solution {
    LinkedList<List<Integer>> result = new LinkedList<>();
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        LinkedList<Integer> list = new LinkedList<>();
        Arrays.sort(candidates);
        findSum(result, target, candidates, list, 0);
        return result;

    }
    public void findSum(LinkedList<List<Integer>> result, int residue, int[] candidates, List<Integer> list, int start){
        if(residue == 0) {
            result.add(new LinkedList<>(list));//不能用result.add(list)
            return;
        }
        for(int i = start; i < candidates.length && residue - candidates[i]>=0 ; i++) {
            while(i < candidates.length && i != start && candidates[i]==candidates[i-1]) i++;//与39不同,需要去重
            if(i == candidates.length) break;
            list.add(candidates[i]);
            findSum(result, residue - candidates[i], candidates, list, i+1);
            list.remove(list.size()-1);
        }
    }
}
发布了136 篇原创文章 · 获赞 19 · 访问量 7906

猜你喜欢

转载自blog.csdn.net/weixin_43306331/article/details/104079430