首页 > 其他 > 详细

Combination Sum II

时间:2014-02-06 16:31:08      阅读:407      评论:0      收藏:0      [点我收藏+]

Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.

Each number in C may only be used once in the combination.

bubuko.com,布布扣
 1 public class Solution {
 2     public ArrayList<ArrayList<Integer>> combinationSum2(int[] candidates, int target) {
 3         ArrayList<ArrayList<Integer>> res = new ArrayList<ArrayList<Integer>>();
 4         if(candidates.length<=0) return res;
 5         Arrays.sort(candidates);
 6         DFS(candidates,target,0,0,res,new ArrayList<Integer>());
 7         return res;
 8     }
 9     public void DFS(int[] can,int target,int sum,int start,ArrayList<ArrayList<Integer>>res,ArrayList<Integer>output){
10         if(sum>target) return;
11         if(sum==target){
12             ArrayList<Integer> temp = new ArrayList<Integer>();
13             temp.addAll(output);
14             res.add(temp);
15             return;
16         }
17         for(int i=start;i<can.length;i++){
18             output.add(can[i]);
19             sum+=can[i];
20             DFS(can,target,sum,i+1,res,output);
21             sum-=output.get(output.size()-1);
22             output.remove(output.size()-1);
23             while(i<can.length-1 && can[i]==can[i+1]){//delete the duplicates
24               i++;
25             }
26         }
27     }
28 }
View Code

Combination Sum II

原文:http://www.cnblogs.com/krunning/p/3538741.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!