LeetCode Combination Sum II

来源:互联网 发布:上海达观数据公司咋样 编辑:程序博客网 时间:2024/06/10 15:37

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.

Note:

  • All numbers (including target) will be positive integers.
  • Elements in a combination (a1a2, … , ak) must be in non-descending order. (ie, a1 ≤ a2 ≤ … ≤ ak).
  • The solution set must not contain duplicate combinations.

For example, given candidate set 10,1,2,7,6,1,5 and target 8
A solution set is: 
[1, 7] 
[1, 2, 5] 
[2, 6] 

[1, 1, 6] 

思路分析:这题和Combination Sum很像,唯一的区别是每个数只能使用一次,只需要dfs传入start参数为当前位置的下一个位置i+1即可,详细分析参见Combination Sum的题解。两题代码几乎一样,只有一行不同。

AC Code

public class Solution {    public List<List<Integer>> combinationSum2(int[] num, int target) {        //1240        List<List<Integer>> res = new ArrayList<List<Integer>>();        int m = num.length;        if(m == 0) return  res;        Arrays.sort(num);        List<Integer> item = new ArrayList<Integer>();        dfs(num, target, 0, item, res);        return res;    }        public void dfs(int[] num, int target, int start, List<Integer> item, List<List<Integer>> res){        if(target == 0){            res.add(new ArrayList<Integer>(item));            return;        }        if(target < 0) return;        for(int i = start; i < num.length; i++){            if(i > start && num[i] == num[i-1]) continue;// avoid duplicate solutions            item.add(num[i]);            dfs(num, target - num[i], i + 1, item, res);            item.remove(item.size() - 1);        }    }    //1255}


0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 头晕恶心想吐四肢无力怎么办 烧退了浑身疼怎么办 下午睡久了头疼怎么办 一天睡久了头疼怎么办 在家躺久了头疼怎么办 4周多儿童睡眠差怎么办 6岁儿童睡眠差怎么办 四年级的孩子不会写作文怎么办 四年级的孩子写不出作文怎么办? 欠了三万网贷怎么办 打完篮球浑身疼怎么办 在部队当兵意外死亡了怎么办 派派没有体力瓶怎么办 e记账登录不上怎么办 洁净净化区湿度高怎么办 政府测量土地少算了面积怎么办 北京武警欠我钱怎么办 被小混混打了怎么办 农保地建房子怎么办 WOW7.3到8.0橙装怎么办 90后离婚有孩子怎么办 90后的我们该怎么办 越南和中国结婚怎么办结婚证 改革怎么看走留怎么办事业怎么干 改革怎么看走留怎么办工作怎么干 军改怎么看我该怎么办 改革怎么办我该怎么干 改革怎么看 走留怎么办 腿又粗又弯怎么办 假发发量太多了怎么办 剃了发际线后悔怎么办 在外面遇到坏人抢劫怎么办 请事假单位不批怎么办 捷普请假不批怎么办 钉钉请假不审批怎么办 钉钉请假未审批怎么办 员工事假+工作履责怎么办 员工请事假不批怎么办 哺乳起员工一直请事假怎么办 请公休公司不批怎么办 辞职信交了不批怎么办