码迷,mamicode.com
首页 > 其他好文 > 详细

组合总和II

时间:2019-11-28 23:14:29      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:来源   组合   sum   pre   alt   close   ons   getc   ret   

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

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

说明:

所有数字(包括目标数)都是正整数。
解集不能包含重复的组合。 
示例 1:

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

输入: candidates = [2,5,2,1,2], target = 5,
所求解集为:
[
  [1,2,2],
  [5]
]

解答:

技术图片
class Solution {
    private List<List<Integer>> res=new ArrayList<>();
    private int length;
    private int[] candidates;
    public List<List<Integer>> combinationSum2(int[] candidates,int target){
        if(candidates==null||candidates.length==0){
            return res;
        }
        Arrays.sort(candidates);
        this.length=candidates.length;
        this.candidates=candidates;
        getCombination(target,0,new Stack<>());
        return res;
    }

    public void getCombination(int residuse, int start, Stack<Integer> stack){
        if(residuse<0){
            return ;
        }
        if(residuse==0){
            List<Integer> r=new ArrayList<>(stack);
            res.add(r); 
            return;
        }
        for(int i=start;i<length&&residuse-candidates[i]>=0;i++){
            if(i>start&&candidates[i]==candidates[i-1]){
                continue;
            }
            stack.add(candidates[i]);
            getCombination(residuse-candidates[i],i+1,stack);
            stack.pop();
        }
    }
}
View Code

 

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/combination-sum-ii

组合总和II

标签:来源   组合   sum   pre   alt   close   ons   getc   ret   

原文地址:https://www.cnblogs.com/wuyouwei/p/11954325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!