給定一個數組 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]
]
代碼
class Solution {List<List<Integer>> ret=new ArrayList<>();public List<List<Integer>> combinationSum2(int[] candidates, int target) {Arrays.sort(candidates);//排序combination(candidates,0,target,new LinkedList<>());return ret;}public void combination(int[] candidates, int loc, int target, LinkedList<Integer> temp) {if(target==0){//符合情況ret.add((List<Integer>) temp.clone());return;}for(int i=loc;i<candidates.length;i++)//以后面不同節點接上去{if(candidates[i]>target) continue;//不滿足情況if(i>loc&&candidates[i]==candidates[i-1]) continue;//相同的頭節點temp.add(candidates[i]);combination(candidates, i+1, target-candidates[i], temp);//計算后面的子問題temp.removeLast();//回溯}}
}