题目:

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

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

说明:

  • 所有数字(包括 target)都是正整数。
  • 解集不能包含重复的组合。

示例 1:

输入: candidates = [2,3,6,7], target = 7,
所求解集为:
[
[7],
[2,2,3]
]

示例 2:

输入: candidates = [2,3,5], target = 8,
所求解集为:
[
  [2,2,2,2],
  [2,3,3],
  [3,5]
]

解题思路:

首先将数组排序,然后递归地查找符合的数字

class Solution {
public List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> res = new ArrayList<>();
Arrays.sort(candidates);
getAnswers(res,candidates,target,new ArrayList<>(),0);
return res;
} public void getAnswers(List<List<Integer>> res, int[] candidates, int target,
List<Integer> tempList,int index) {
if (target == 0) {
res.add(tempList);
return;
}
for (int i = index; i < candidates.length; i++) {
if (candidates[i]<=target) {
List<Integer> list=new ArrayList<>(tempList);
list.add(candidates[i]);
getAnswers(res,candidates,target-candidates[i],list,i);
} else {
break;
}
}
}
}

最新文章

  1. 一行代码实现java list去重
  2. [原创]Centos7 内部常用软件升级计划
  3. Java 序列化Serializable详解
  4. [No00004F]史上最全Vim快捷键键位图(入门到进阶)
  5. ElasticSearch入门系列(六)分布式操作
  6. Hibernate 延迟加载
  7. SAP SD你要知道的透明表
  8. iOS绘制手势解锁密码
  9. 【暑假】[深入动态规划]UVa 1627 Team them up!
  10. DataContext 数据在F5刷新频繁,会出现数据读取错误
  11. 几个MVC属性
  12. hdu 5124 lines
  13. 基于STM32旋转编码器
  14. platform 收集linux/windows操作系统信息
  15. 2019.03.09 codeforces620E. New Year Tree(线段树+状态压缩)
  16. linux下网络查看命令ss
  17. AJPFX:什么是止盈?什么是止损?
  18. 每日英语:American Cities May Have Hit &#39;Peak Office&#39;
  19. Log Parser 2.2 + Log Parser Lizard GUI 分析IIS日志示例
  20. Eclipse中复制项目重命名后重新发布,项目名在地址栏仍然是原来的项目名”的问题

热门文章

  1. js添加对象数组
  2. win10 wsl安装 命令行
  3. Junit Test 的时候出错java.lang.IllegalStateException: Failed to load ApplicationContext
  4. SQL Server XML变量转为Json文本
  5. sourcetree免注册方法
  6. code1214 线段覆盖
  7. LA3983 捡垃圾的机器人
  8. position与offset的区别
  9. sklearn中的随机森林
  10. 数据库SQL优化大总结之 百万级数据库优化方案(转)