zoukankan      html  css  js  c++  java
  • 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).

    方法

    思路和上一题一样。
        public int threeSumClosest(int[] num, int target) {
            Arrays.sort(num);
            int len = num.length;
            int min = num[0] + num[1] + num[2];
            for (int i = 0; i < len - 2; i++) {
                int left = i + 1;
                int right = len - 1;
                while (left < right) {
                    int temp = num[left] + num[right] + num[i];
                    if (Math.abs(min - target) > Math.abs(temp - target)) {
                        min = temp;
                    }
                    if (temp == target) {
                        return target;
                    } else if (temp > target){
                        right--;
                    } else {
                        left++;
                    }
                }
            }
            return min;
        }


    版权声明:本文博主原创文章。博客,未经同意不得转载。

  • 相关阅读:
    C# Workbook读取Execl数据
    C# Task
    Json/XML序列化和反序列化
    C# RSA加解密和MD5加密
    SqlServer基本操作
    SQL Server基础优化
    Http请求基本方法
    ASP.NET MVC基础知识
    简单的五险一金计算器
    PHP基础入门(三)
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4877942.html
Copyright © 2011-2022 走看看