1. 程式人生 > >leetcode-40 組合總和Ⅱ

leetcode-40 組合總和Ⅱ

給定一個數組 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] ]

 public List<List<Integer>> combinationSum2(int[] candidates, int target) {
     List<List<Integer>> res = new ArrayList<>();
     ArrayList<Integer> list = new ArrayList<>();
     if(candidates == null || candidates.length < 1){
         return res;
     }
     Arrays.sort(candidates);
     combinationSumDFS(candidates, target, res, list, 0);
     return res;
 }
 public static void combinationSumDFS(int[] nums, int target, List<List<Integer>> res, ArrayList<Integer> list, int start){
    if(target < 0){
        return;
    }
    if(target == 0){
        res.add(list);
        return;
    }
    for(int i = start; i < nums.length && target >= nums[i]; i++){
        if(i > start && nums[i] == nums[i - 1]){
            continue;
        }
        list.add(nums[i]);
        combinationSumDFS(nums, target - nums[i], res, new ArrayList<>(list), i + 1);
        list.remove(list.size() - 1);
    }  
 }