zoukankan      html  css  js  c++  java
  • LeetCode[16]: 3Sum Closest

    题目描述

    Given an array S of n integers, find three integers in S such that the sum is closest to a given number, target. Return the sum of the three integers. You may assume that each input would have exactly one solution.

    For example, given array S = {-1 2 1 -4}, and target = 1.
    
    The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
    

    解题思路

    这道题和之前的两数之和的解决方式类似,区别是在其基础上增加了第三个数。我们可以通过固定其中一个数numsi,然后寻找两数之和最接近targetnumsi,将问题转化为两数之和的问题。首先将数据排序,遍历数组固定numsi然后使j=i+1k=length1,通过移动jk两个下标,来使numsj+numsktargetnumsi。然后保存当前最优解和当前三数之和更接近目标target的值。

    代码

    class Solution {
        public int threeSumClosest(int[] nums, int target) {
            int threeSum = nums[0] + nums[1] + nums[2];
            int closestNum = threeSum;
            //先排序
            Arrays.sort(nums);
            for (int i=0; i < nums.length-2; i++) {
                int twoSum = target - nums[i];
                int j = i + 1, k = nums.length-1;
                while (j < k) {
                    threeSum = nums[i] + nums[j] + nums[k];
                    if(Math.abs(threeSum-target) < Math.abs(closestNum-target))
                        closestNum = threeSum;
                    if (nums[j] + nums[k] < twoSum) {
                        j++;
                    } else if (nums[j] + nums[k] > twoSum) {
                        k--;
                    } else { return target; }
                }
            }
            return closestNum;
        }
    }
  • 相关阅读:
    熟悉常用的HBase操作
    爬虫大作业
    熟悉常用的HDFS操作
    数据结构化与保存
    获取全部校园新闻
    爬取校园新闻首页的新闻的详情,使用正则表达式,函数抽离+网络爬虫基础练习
    中文词频统计
    英语词频统计
    AXIOS中文文档
    overload方法重载
  • 原文地址:https://www.cnblogs.com/enhe/p/12141701.html
Copyright © 2011-2022 走看看