• LeetCode 40. Combination Sum II


    LeetCode 40. Combination Sum II (组合总和 II)

    题目

    链接

    https://leetcode.cn/problems/combination-sum-ii/

    问题描述

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

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

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

    示例

    输入: candidates = [10,1,2,7,6,1,5], target = 8,
    输出:
    [
    [1,1,6],
    [1,2,5],
    [1,7],
    [2,6]
    ]

    提示

    1 <= candidates.length <= 100
    1 <= candidates[i] <= 50
    1 <= target <= 30

    思路

    这里i>index,就代表是同一层,同一层不能采用相同的数,那么就可以跳过,别的思路和之前一题一样。

    复杂度分析

    时间复杂度 O(n2)
    空间复杂度 O(n)
    

    代码

    Java

        List<List<Integer>> ans = new ArrayList<>();
        LinkedList<Integer> path = new LinkedList<>();
    
        public List<List<Integer>> combinationSum2(int[] candidates, int target) {
            Arrays.sort(candidates);
            trace(0, target, candidates, 0);
            return ans;
        }
    
        public void trace(int sum, int target, int[] candidates, int index) {
            if (sum > target) {
                return;
            }
            if (sum == target) {
                ans.add(new LinkedList<>(path));
                return;
            }
            for (int i = index; i < candidates.length; i++) {
                if (i > index && candidates[i] == candidates[i - 1]) {
                    continue;
                }
                path.add(candidates[i]);
                sum += candidates[i];
                trace(sum, target, candidates, i + 1);
                sum -= candidates[i];
                path.removeLast();
            }
        }
    
  • 相关阅读:
    关于Oracle过程,函数的经典例子及解析
    describeType的使用
    Flash Pro CS5无法跳过注册Adobe ID的问题
    DOM的滚动
    Flex的LogLogger类
    浏览器无法打开Google服务
    as3中颜色矩阵滤镜ColorMatrixFilter的使用
    仿Google+相册的动画
    Flex中ModuleManager的一个bug
    有序的组合
  • 原文地址:https://www.cnblogs.com/blogxjc/p/16372646.html
Copyright © 2020-2023  润新知