15. 3Sum-数组

1题目理解

输入:int数组nums
规则:查找数组中任意三个数的和等于0
输出:符合条件的解,不包含重复的解
例子:
nums = [-1, 0, 1, 2, -1, -4],

A solution set is:
[
[-1, 0, 1],
[-1, -1, 2]
]

2 排序+双指针

题解参考网址
做排序是因为解不能重复,而数组中元素可能是重复的。排序之后[-4,-1,-1,0,1,2],在查找了组合(-4,-1,-1)、(-4,-1,0)…以后,就不能再查找(-4,-1,0),这里的-1是下标为2的-1。否则就会有重复的解。

关键点2是双指针。排序好后的数组,当a确定以后b+c的值就是一个固定的值。b从小到大赋值,c从大到小赋值。

class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> result = new ArrayList<List<Integer>>();
        int n = nums.length;
        Arrays.sort(nums);
        for(int i=0;i<n;i++){
            if(i==0 || nums[i] !=nums[i-1]){
                int a = nums[i];
                int k = n-1;//这里是重点
                for(int j = i+1; j<n;j++){
                    if(j==i+1 || nums[j] != nums[j-1]){
                        int b = nums[j];
                        while(k>j && nums[k]+a+b>0){
                            k--;
                        }
                        if(k!=j && nums[k]+a+b==0){
                            result.add(Arrays.asList(a,b,nums[k]));
                        }
                    }
                }
            }
            
            
        }
        return result;
    }
}

另外一种写法

class Solution {
    public List<List<Integer>> threeSum(int[] nums) {
        List<List<Integer>> result = new ArrayList<List<Integer>>();
        int n = nums.length;
        Arrays.sort(nums);
        int i = 0;
        while(i<n){
            if(i>0  && nums[i-1]==nums[i]) {
                i++;
                continue;
            }
            int j = i+1,k=n-1;
            int target = 0 - nums[i];
            while(j<k){
                if(nums[j]+nums[k]==target){
                    result.add(Arrays.asList(nums[i],nums[j],nums[k]));
                    j++;
                    while(j<k && nums[j-1]==nums[j]) j++;
                    k--;
                }else if(nums[j]+nums[k]<target){
                    j++;
                }else{
                    k--;
                }
            }
            i++;
        }
        return result;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值