组合总和||

该博客探讨了一个编程问题,即如何找到一个整数数组中所有可能的组合,使得这些组合的和等于给定的目标数。作者提出了一个解决方案,通过排序数组并使用回溯算法来避免重复组合。关键在于在遍历时跳过重复元素,以提高效率。
摘要由CSDN通过智能技术生成

给定一个候选人编号的集合 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。

candidates 中的每个数字在每个组合中只能使用 一次 。

注意:解集不能包含重复的组合。

在这里插入图片描述
思路:进入回溯函数,对该数进行for循环,依次遍历,判断是否符合条件
重点:有样例会导致超时,如下

在这里插入图片描述

所以要加入这一句话
在这里插入图片描述
具体代码:

class Solution {
    List<List<Integer>> list1=new ArrayList<>();
    List<Integer> list2=new ArrayList<>();
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        Arrays.sort(candidates);
        dfs(candidates,target,0);
        return list1;
    }
    public void dfs(int[] candidates,int target,int index){
        int len=candidates.length;
        if(target==0){
            if(!list1.contains(list2)) list1.add(new ArrayList<>(list2));
        } 
        if(target<0) return;
        for(int i=index;i<len;i++){
            if(i>index&&candidates[i]==candidates[i-1]) continue;
            list2.add(candidates[i]);
            dfs(candidates,target-candidates[i],i+1);
            list2.remove(list2.size()-1);
        }
    }
}
//12:55
//1 1 2 5 6 7 10
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值