LeetCode 组合总和 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]
]
class Solution {
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        ArrayList<List<Integer>> res=new ArrayList<>();
        if(candidates.length==0) return res;
//         先排序
        Arrays.sort(candidates);
        if(candidates[0]>target) return res;
        List<Integer> temp=new ArrayList<>();
        find(candidates,target,res,temp,0);
        return res;
    }
    public boolean find(int[] candidates, int target,List<List<Integer>> res,List<Integer> temp,int start){
//         递归出口
        if(target<0) return false;
        else if(target==0){
            res.add(new ArrayList<Integer>(temp));
            return true;
        }
        else{
            for(int i=start;i<candidates.length;i++){
//   去重 只有当target==0时,i才会加加 因此可通过i>start 判断已有一次得到结果 通过candidates[i]==candidates[i-1]去重
                if(i>start && candidates[i]==candidates[i-1]) continue;
                temp.add(candidates[i]);
//                 递归
                boolean b=find(candidates,target-candidates[i],res,temp,i+1);
//                 回溯
                temp.remove(temp.size()-1);
                if(!b) break;
            }
        }
        return true;
    }
}

猜你喜欢

转载自blog.csdn.net/Z_Y_D_/article/details/82893316