leetcode39_组合求和


public List> combinationSum(int[] candidates, int target) {
    List> ans = new ArrayList<>();
    List combine = new ArrayList<>();
    dfs(candidates, target, combine, ans, 0);
    return ans;
}

public void dfs(int[] candidates, int target, List combine, List> ans, int idx) {
    if(idx == candidates.length) return;
    if(0 == target) {
        ans.add(new ArrayList<>(combine));
        return;
    }
    dfs(candidates, target, combine, ans, idx+1);
    if(target - candidates[idx] >= 0){
        combine.add(candidates[idx]);
        dfs(candidates, target-candidates[idx], combine, ans, idx);
        combine.remove(combine.size()-1);
    }
}
dfs