leetcode:最接近的三数之和

该篇博客介绍了如何使用排序和双指针技术解决寻找数组中三数之和最接近目标值的问题。算法的时间复杂度为O(N^2),首先对数组进行排序,然后通过两层循环遍历数组,跳过重复元素,根据三数之和与目标值的关系调整指针位置,找到最接近的三数之和。
摘要由CSDN通过智能技术生成

在这里插入图片描述
思路:同样是采用前篇文章一样的思想对数组进行两次遍历,时间复杂度只有O(N2)。

class Solution {
    public int threeSumClosest(int[] nums, int target) {
        int temp;
        int len=nums.length;
        int flag=0;
        Arrays.sort(nums);
        temp=target-nums[0]-nums[1]-nums[2];
        if(temp<0) temp=0-temp;
        for(int first=0;first<len;first++){
            int third=len-1;
            if(first>0&&nums[first]==nums[first-1]) continue;
            for(int second=first+1;second<len;second++){
                if(second>first+1&&nums[second]==nums[second-1]) continue;
                while(second<third){
                    if(nums[first]+nums[second]+nums[third]<target){//三数之和小于目标
                        if(target-nums[first]-nums[second]-nums[third]<temp){
                            temp=target-nums[first]-nums[second]-nums[third];
                            flag=1;
                        }
                        break;
                    }else if(nums[first]+nums[second]+nums[third]>target){//三数之和大于目标
                        if(nums[first]+nums[second]+nums[third]-target<temp){
                            temp=nums[first]+nums[second]+nums[third]-target;
                            flag=-1;
                        }
                        third--;
                    }else{
                        return target;
                    }
                }
                if(second==third) break;
            }
        }
        if(flag==1) return target-temp;
        else if(flag==-1) return target+temp;
        else{
            return nums[0]+nums[1]+nums[2];
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值