码迷,mamicode.com
首页 > 其他好文 > 详细

39. 组合总和

时间:2019-11-14 13:49:24      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:代码   一个   包含   重复   dex   lis   回溯   date   list   

给定一个无重复元素的数组 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]
]

public class L39 {
//这是回溯法
public static List<List<Integer>> combinationSum(int[] candidates, int target) {
List<List<Integer>> result = new ArrayList<>();
Stack<Integer> stack = new Stack<>();
getList(candidates,0,target,stack,result);
return result;

}
public static void getList(int[] candisates, int index, int target, Stack<Integer> stack, List<List<Integer>> comb){
//判断遍历终止的代码
if(target == 0){
Stack<Integer> stack02 = new Stack<>();
stack.forEach(s->stack02.push(s));
comb.add(stack02);
return;
}else if(target<0){
return;
}
//进行遍历
for(int in = index;in < candisates.length && (target > candisates[in]);in ++){
stack.push(candisates[in]);
getList(candisates,in,target - candisates[in],stack,comb);
stack.pop();
}
}

public static void main(String[] args) {
int[] can = {3,2,6,7,1};
Arrays.sort(can);
List<List<Integer>> result = combinationSum(can,7);
}
}

 

39. 组合总和

标签:代码   一个   包含   重复   dex   lis   回溯   date   list   

原文地址:https://www.cnblogs.com/mayang2465/p/11854715.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!