LeetCode 39. 组合总和(回溯法)

  • 题目:39. 组合总和
    给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
    candidates 中的数字可以无限制重复被选取。

  • 说明:
    所有数字(包括 target)都是正整数。
    解集不能包含重复的组合。

  • 示例 1:
    输入: candidates = [2,3,6,7], target = 7,
    所求解集为:
    [
    [7],
    [2,2,3]
    ]

  • 示例 2:
    输入: candidates = [2,3,5], target = 8,
    所求解集为:
    [
    [2,2,2,2],
    [2,3,3],
    [3,5]
    ]

  • 思路:回溯法

/*
    * 因为数组中没有重复的数,所以组合不会重复
    * */
    public List> combinationSum(int[] candidates, int target) {
        List> result = new ArrayList<>();
        Arrays.sort(candidates);
        backTrack(candidates, result, new ArrayList(), target, 0);
        return result;
    }

    private void backTrack(int[] candidates, List> result, ArrayList list, int remain, int start) {
        if (remain < 0){
            return;
        }
        else if (remain == 0) {
            result.add(new ArrayList<>(list));
        } else {
            for (int i=start;i

你可能感兴趣的:(数据结构,算法)