最接近的三数之和(threeSumClosest)*

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了最接近的三数之和(threeSumClosest)*相关的知识,希望对你有一定的参考价值。

参考技术A

https://leetcode-cn.com/problems/3sum-closest/submissions/
给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。

示例:
例如,给定数组 nums = [-1,2,1,-4], 和 target = 1.

与 target 最接近的三个数的和为 2. (-1 + 2 + 1 = 2).

解析:
1.排序+双指针 复杂度O(n^2),利用这个思路过一遍数组,同时在每一次判断当前的sum是不是距离target最近的,更新结果。

3.知识点:
开始的时候错在了

Python list内置sort()方法用来排序,也可以用python内置的全局sorted()方法来对可迭代的序列排序生成新的序列(字典,复杂元组等)

使用sort()排序

使用sorted()排序

16. 最接近的三数之和

  1. 最接近的三数之和
    给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。

示例:

输入:nums = [-1,2,1,-4], target = 1
输出:2
解释:与 target 最接近的和是 2 (-1 + 2 + 1 = 2) 。

提示:

3 <= nums.length <= 10^3
-10^3 <= nums[i] <= 10^3
-10^4 <= target <= 10^4

题解

class Solution {
    public int threeSumClosest(int[] nums, int target) {   
        Arrays.sort(nums);
        int closed = (int)Math.pow(10,4);
        for( int i =0; i< nums.length; i++){ 
            int l = i+1;
            int r = nums.length - 1;
            while(l < r){
                int sum = nums[i] + nums[l] + nums[r];
                if(Math.abs(closed - target) > Math.abs(sum - target)){
                    closed = sum;
                } 
                if(sum < target){
                    l++;
                }else if(sum > target){
                    r--;
                }else{
                    break;
                }
            }
        }
        return closed;
    }
}

以上是关于最接近的三数之和(threeSumClosest)*的主要内容,如果未能解决你的问题,请参考以下文章

最接近的三数之和

LeetCode 16. 最接近的三数之和

力扣16-最接近的三数之和&力扣18-四数之和

最接近的三数之和

LeetCode:最接近的三数之和16

59. 最接近的三数之和