zoukankan      html  css  js  c++  java
  • 39. Combination Sum

    一、题目

      1、审题

      2、分析:

        给出一个不重复的数字数组,一个目标数字target,求数组中的元素组合所得的和为 target 的所有组合,其中数组中的元素可以多次使用。

    二、解答

      1、思路:

        利用递归算法求得所有组合。

      

    public class Solution {
        public List<List<Integer>> combinationSum(int[] candidates, int target) {
            List<List<Integer>> targetList = new LinkedList<List<Integer>>();
            Arrays.sort(candidates);
    
            getResult(targetList, new ArrayList<Integer>(), candidates, target, 0);
            return targetList;
        }
        
        public void getResult(List<List<Integer>> targetList, 
                ArrayList<Integer> curreyList, int[] candidates, int target, int start) { // target > 0 if(target > 0) { for(int i = start; i < candidates.length && target >=candidates[i]; i++) { curreyList.add(candidates[i]); getResult(targetList, curreyList, candidates, target-candidates[i], i); curreyList.remove(curreyList.size()-1); } } // 合适 else if(target == 0) { targetList.add(new ArrayList<Integer>(curreyList));         // add(new ArrayList<Integer>(resultList) : 复制 resultList 的值 // add((resultList)): 添加 resultList 指针,其中的 resultList 的值会变化 } } }
  • 相关阅读:
    开不了的窗_____window.open
    IIS项目发布完整流程
    理解MVC模式
    ASP.NET MVC 基础(01)
    C#之线程和并发
    vue时间格式化
    windows 2013 datacenter 安装sql server2008 r2兼容性
    SQL Server DBA十大必备工具使生活轻松
    ORACLE主要的系统表和系统视图
    Oracle中spool命令实现的两种方法比较
  • 原文地址:https://www.cnblogs.com/skillking/p/9580797.html
Copyright © 2011-2022 走看看