• LeetCode刷题笔记-回溯法-组合总和问题


    题目描述:

    《组合总和问题》给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。

    candidates 中的数字可以无限制重复被选取。

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/combination-sum

    Java代码实现

        public static List<List<Integer>> combinationSum(int[] candidates, int target) {
         List
    <List<Integer>> result = new ArrayList<>(); Arrays.sort(candidates); //升序排序,便于剪枝 combine2(result,new ArrayList<>(),candidates,target,0); return result; }
    public static void combine2(List<List<Integer>> result,List<Integer> temp,int[] candidates,int target,int begin){ if (target==0){ result.add(new ArrayList<>(temp)); return; } for (int i=begin;i<candidates.length && target-candidates[i] >=0 ;i++){ temp.add(candidates[i]); combine2(result,temp,candidates,target-candidates[i],i); temp.remove(temp.size()-1); } }
  • 相关阅读:
    POJ 2342
    SHU 413
    SHU 414
    进制转换模板
    SHU 第15届上海大学程序设计联赛夏季赛[热身赛] 第三题(G题)
    POJ 3185
    XTU 1260
    高斯消元法模板
    POJ 2057
    模态窗口的定时关闭
  • 原文地址:https://www.cnblogs.com/sqchao/p/11069464.html
Copyright © 2020-2023  润新知