1. 程式人生 > >40. 組合總和 II leetcode JAVA

40. 組合總和 II leetcode JAVA

i++ tco 都是 pre pan div contains integer ray

題目:

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

解題思路:

首先將數組排序,然後遞歸地找到符合target的數組組合,最後除去重復的數組。

class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        List<List<Integer>> res = new ArrayList<>();
        Arrays.sort(candidates);
        getAnswers(res,candidates,target,
new ArrayList<>(),0); return res; } public void getAnswers(List<List<Integer>> res, int[] candidates, int target, List<Integer> tempList,int index) { if (target == 0) { if(!res.contains(tempList)) res.add(tempList);
return; } for (int i = index; i < candidates.length; i++) { if (candidates[i]<=target) { List<Integer> list=new ArrayList<>(tempList); list.add(candidates[i]); getAnswers(res,candidates,target-candidates[i],list,i + 1); } else { break; } } } }




40. 組合總和 II leetcode JAVA