DFS_40. 组合总和 II

Posted zzxisgod

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DFS_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


思路:

上一题的升级版?给定的数组元素允许重复了,上一题没有重复,上一题可以重复利用,这题不能重复利用

基本都一样,不多说了,盘他

class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        //记录最终的返回值
        List<List<Integer>> res = new LinkedList<>();
        //记录当前的路径
        Deque<Integer> path = new ArrayDeque<Integer>();
        int len = candidates.length;
        Arrays.sort(candidates);
        boolean [] isVisited = new boolean[len];
        dfs(len,target,0,isVisited,res,path,candidates);
        return res;
    }

    private void dfs(int len, int target, int first, boolean[] isVisited, List<List<Integer>> res, Deque<Integer> path, int[] candidates) {
        if (target == 0){
            res.add(new ArrayList<>(path));
            return;
        }
        for (int i = first; i < len; i++) {
            if (i != 0 && candidates[i] == candidates[i - 1] && !isVisited[i - 1]) {
                continue;  // 防止重复
            }
            if (target < candidates[i]){
                continue;
            }
            if (isVisited[i]){
                continue;
            }
            path.add(candidates[i]);
            isVisited[i] = true;
            dfs(len, target - candidates[i], i, isVisited, res, path, candidates);
            isVisited[i] = false;
            path.remove(candidates[i]);
        }
    }
}

好像确实难了一点

以上是关于DFS_40. 组合总和 II的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-----40. 组合总和 II

[leetcode 40. 组合总和 II] 不排序使用哈希表+dfs递归 vs 排序栈+回溯

[Mdfs] lc90. 子集 II(组合类型枚举+多重背包+去重经典)

40组合总和II

代码随想录|day26|回溯算法part03● 39. 组合总和● 40.组合总和II● 131.分割回文串

[回溯算法]leetcode40. 组合总和 II(c实现)