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

組合總和 II

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

組合總數
和組合總數的思路是一致的,只是每次遞迴時控制start指標的位置為i+ 1即可,不能重複元素。

class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        Arrays.sort(candidates);//先給陣列排序
        List<Integer> list = new ArrayList<>();//定義臨時存放結果
        List<List<Integer>> res = new ArrayList<>();//定義結果集
        if (candidates == null || candidates.length == 0)
            return res;
        combin(candidates, 0, target, list, res);
            return res;
    }
    //不能重複
    private void combin(int[] candidates, int start, int target, List<Integer> list, List<List<Integer>> res) {
        if (target == 0) {
                res.add(new ArrayList(list));
            return;
        }
        for (int i = start; i < candidates.length; i ++) {
            if (candidates[i] <= target) {
                if (i > start && candidates[i] == candidates[i-1]) continue;
                list.add(candidates[i]);
                combin(candidates, i + 1, target - candidates[i], list, res);//不重複,則將start指標走一步
                list.remove(list.size() - 1);
            }
        }
    }
}