java是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaEE, JavaME, JavaSE)的总称。本站提供基于Java框架struts,spring,hibernate等的桌面应用、web交互及移动终端的开发技巧与资料

保持永久学习的心态,将成就一个优秀的你,来 继续搞起java知识。

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).

思路:同上篇博客,稍加变化而已。

import java.util.Arrays;

public class Solution {
    public int threeSumClosest(int[] nums, int target) {
		if (nums.length < 3) {
			return 0;
		}
		Arrays.sort(nums);
		int value = nums[0] + nums[1] + nums[2];
		for (int i = 0; i < nums.length; i++) {
			if (i >= 1 && nums[i] == nums[i - 1]) {
				continue;
			}
			int j = i + 1;
			int k = nums.length - 1;
			while (j < k) {
				int nowValue = nums[i] + nums[j] + nums[k];
				if (Math.abs(nowValue - target) < Math.abs(value - target)) {
					value = nowValue;
				}
				if (nowValue > target) {
					while (k > j && k <= nums.length - 2 && nums[k] == nums[k - 1]) {
						k--;
					}
					k--;
				} else if (nowValue < target) {
					while (j < k && j >= 1 && nums[j] == nums[j + 1]) {
						j++;
					}
					j++;
				} else {
					return target;
				}
			}
		}
		return value;
    }
}

LeetCode3SumClosest

因为水平有限,难免有疏忽或者不准确的地方,希望大家能够直接指出来,我会及时改正。一切为了知识的分享。

后续会有更多的精彩的内容分享给大家。