leetcode 组合总和II

这篇博客详细介绍了如何使用深度优先搜索(DFS)结合剪枝策略解决LeetCode上的组合总和问题。作者通过Java代码展示了如何排序输入数组,然后通过递归的回溯方法找到所有可能的组合。文章强调了在回溯过程中更新状态和剪枝的重要性,以避免无效的计算。
摘要由CSDN通过智能技术生成

leetcode题目链接

1. 题目考点

  1. dfs + 剪枝
  2. 回溯

1. 考点解析

  1. 回溯 + 剪枝
class Solution {
    List<List<Integer>> res = new ArrayList<>();
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        Arrays.sort(candidates);
        Stack<Integer> path = new Stack<>();
        dfs(candidates, 0, target, path, 0);
        return res;
    }

    public void dfs(int[] candidates, int start, int target, Stack<Integer> path, int sum) {
        if (sum == target) {
            res.add(new ArrayList(path));
            return ;
        }
        if (sum > target) return ;
        
		// 关键:start 
        for (int i = start; i < candidates.length; i++) {
            sum += candidates[i];
            path.push(candidates[i]);
            dfs(candidates, i, target, path, sum);
            sum -= candidates[i];
            path.pop();
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值