当前位置:   article > 正文

LeetCode精选100题——第39题——组合总和_苏绛毓组合100题

苏绛毓组合100题

在这里插入图片描述

class Solution {
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
        ArrayList<List<Integer>> res=new ArrayList<>();
        if(candidates==null||candidates.length==0){
            return res;
        }
        helper(res,new ArrayList<Integer>(),candidates,target,0);
        return res;
    }
    private void helper(ArrayList<List<Integer>> res,ArrayList<Integer> list,int[] candidates,int target,int start){
        if(target==0){
            res.add(new ArrayList(list));
            return;
        }
        if(target<0){
            return;
        }
        for(int i=start;i<candidates.length;i++){
            list.add(candidates[i]);
            helper(res,list,candidates,target-candidates[i],i);
            list.remove(list.size()-1);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/799406
推荐阅读
相关标签
  

闽ICP备14008679号