数字组合

作者: lyoungzzz | 来源:发表于2017-06-28 20:06 被阅读9次

描述

给出一组候选数字 (C) 和目标数字 (T), 找到 C 中所有的组合,使找出的数字和为 T。C 中的数字可以无限制重复被选取。

例如, 给出候选数组 [2,3,6,7] 和目标数字 7,所求的解为:
[7],[2,2,3]
```
###注意事项
```
所有的数字 (包括目标数字) 均为正整数。
元素组合 (a1, a2, … , ak) 必须是非降序 (ie, a1 ≤ a2 ≤ … ≤ ak)。
解集不能包含重复的组合。 
```
###代码实现
```
public class Solution {
    /**
     * @param candidates: A list of integers
     * @param target:An integer
     * @return: A list of lists of integers
     */
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        List<List<Integer>> results = new ArrayList<>();
        if (candidates == null || candidates.length == 0) {
            return results;
        }
        ArrayList<Integer> combination = new ArrayList<>();
        Arrays.sort(candidates);
        int[] nums = removeduplicate(candidates);
        dfs(nums, 0, target, combination, results);
        return results;
    }
    private int[] removeduplicate(int[] nums) {
        int index = 0;
        for (int i = 0; i < nums.length; i++) {
            if (nums[i] != nums[index]) {
                nums[++index] = nums[i];
            }
        }
        int[] newnums = new int[index + 1];
        for (int j = 0; j < newnums.length; j++) {
            newnums[j] = nums[j];
        }
        return newnums;
    }
    private void dfs(int[] nums,
                     int startIndex,
                     int remainTarget,
                     ArrayList<Integer> combination,
                     List<List<Integer>> results) {
        if (remainTarget == 0) {
            results.add(new ArrayList(combination));
            return;
        } 
        for (int i = startIndex; i < nums.length; i++) {
            if (remainTarget < nums[i]) {
                break;
            }
            combination.add(nums[i]);
            dfs(nums, i, remainTarget - nums[i], combination, results);
            combination.remove(combination.size() - 1);
        }
    }
}
```

相关文章

  • lintcode-数字组合II

    题目:给出一组候选数字(C)和目标数字(T),找出C中所有的组合,使组合中数字的和为T。C中每个数字在每个组合中只...

  • 算法之数字转ip

    给定一串数字,通过相邻数字的左右组合,求出其所有的ip组合,例如"25525511135"的所有组合为:["255...

  • 正则表达式

    数字 字母 汉字 汉字字母数字组合

  • 数字密码931是什么意思?

    若解读数字中隐藏的密码,从数字组合的磁场入手,同样的数字组合的顺序不一样,结果却大相径庭。 931是生气天医的组合...

  • 数字组合

    描述 给出一组候选数字 (C) 和目标数字 (T), 找到 C 中所有的组合,使找出的数字和为 T。C 中的数字可...

  • 2018-08-13 LeetCode回溯算法(组合总和)总结

    组合总和candidates 中的数字可以无限制重复被选取 组合总和 IIcandidates 中的每个数字在每个...

  • 我的2020

    我的2020 文/所以 喜欢数字排列,尤其喜欢排列整齐有规律的数字组合。然而,2020,这几个数字的组合,无论是从...

  • 玉祥电话号码解读

    天乙(医)(土)气场: 数字组合:13/31 68/86 49/94 27/72 辅弼(木)气场: 数字组合:11...

  • PTA 1056 组合数的和 (15 分)

    题目 给定 N 个非 0 的个位数字,用其中任意 2 个数字都可以组合成 1 个 2 位的数字。要求所有可能组合出...

  • 1056 组合数的和 (15 分)

    给定 N 个非 0 的个位数字,用其中任意 2 个数字都可以组合成 1 个 2 位的数字。要求所有可能组合出来的 ...

网友评论

    本文标题:数字组合

    本文链接:https://www.haomeiwen.com/subject/ofcpcxtx.html