LeetCode 016 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 static int threeSumClosest(int[] nums, int target) {

        if (nums == null || nums.length < 3) {
            return Integer.MIN_VALUE;
        }

        Arrays.sort(nums);

        int minGap = Integer.MAX_VALUE;
        int result = 0;

        for (int start = 0; start < nums.length; start++) {

            int mid = start + 1, end = nums.length - 1;

            while (mid < end) {

                int sum = nums[start] + nums[mid] + nums[end];
                int gap = Math.abs(sum - target);

                if (gap < minGap) {
                    minGap = gap;
                    result = sum;
                }

                if (sum < target) {
                    mid++;
                } else {
                    end--;
                }
            }
        }

        return result;
    }
    原文作者:_我们的存在
    原文地址: https://blog.csdn.net/Yano_nankai/article/details/49632811
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞