16. 3Sum Closest

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

Example:

Given array nums = [-1, 2, 1, -4], and target = 1.

The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

Solution

class Solution {
    public int threeSumClosest(int[] nums, int target) {
        Arrays.sort(nums);
        int result = nums[0] + nums[1] + nums[2];       //临时值

        for (int i = 0; i < nums.length - 2; i++){          
            int j = i + 1;
            int k = nums.length - 1;
            
            while (j < k){
                int sum = nums[j] + nums[k] + nums[i];
                if (sum == target){
                    return target;
                }else if (sum > target){
                    k--;
                }else if (sum < target){
                    j++;
                }
                if (Math.abs(sum - target) < Math.abs(result - target)){
                    result = sum;                       //找最接近的加和
                }        
            }
        }
        return result;
    }
}

你可能感兴趣的:(16. 3Sum Closest)