CodeTop每日系列三题------------------2021.12.18

LC40. 组合总和 II
//去重是重中之重,其次才是排列组合。used数组是为了不出现[1,1,1]这种类型的组合或者排列,当然如果是为了要去掉数组当中不可以用重复的数字的话,那么对数组进行排序并且如果前后数字相等并且前一个循环!used[i - 1] == 1,也就是说进入了下一个循环那么就要跳过当前循环。
在这里插入图片描述

class Solution {
    
    private LinkedList<Integer> path = new LinkedList();
    private List<List<Integer>> res = new LinkedList();
    private boolean[] used;
    
    public List<List<Integer>> combinationSum2(int[] candidates, int target) {
        if(candidates.length == 0)
        return res;
        Arrays.sort(candidates);
        used = new boolean[candidates.length];
        backtrace(candidates,target,0,0,used);
        return res;
    }

    public void backtrace(int[] candidates, int target,int sum,int idx,boolean[] used){
        if(sum == target){
            res.add(new ArrayList(path));
            return;
        }

        for(int i = idx;i < candidates.length;i++){
            if(sum + candidates[i] > target){
                continue;
            }

            if(i > 0 && candidates[i] == candidates[i - 1] && !used[i - 1]){
                continue;
            }

            used[i] = true;
            path.add(candidates[i]);
            backtrace(candidates,target,sum + candidates[i],i + 1,used);
            used[i] = false;
            path.removeLast();
        }
    }

}

在这里插入图片描述
LC287. 寻找重复数
//使用hashset用空间换时间
在这里插入图片描述

class Solution {
    public int findDuplicate(int[] nums) {
        HashSet<Integer> set = new HashSet();
        for(int x : nums){
            if(set.contains(x)){
                return x;
            }
            set.add(x);
        }
        return -1;
    }
}

LC349. 两个数组的交集
//使用两个set,先存好一个数组的非重复元素然后对另一个数组进行遍历如果set1当中存在当前数组那么放入set2当中最后返回set即可。
在这里插入图片描述

class Solution {
    public int[] intersection(int[] nums1, int[] nums2) {
        Set<Integer> set1 = new HashSet<>();
        Set<Integer> set2 = new HashSet<>();      
        for(int i:nums1){
            set1.add(i);
        }
        for(int i:nums2){
            if(set1.contains(i)){
                set2.add(i);
            }
        }
        int[] arr = new int[set2.size()];
        int j=0;
        for(int i:set2){
            arr[j++] = i;
        }
        return arr;
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

破晓以胜

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值