0016._3_Sum_Closest

016. 3Sum Closest

难度: Medium

刷题内容

原题连接

内容描述

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

解题方案

思路
**- 时间复杂度: O(N²)**- 空间复杂度: O(N)**

代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* @param {number[]} nums
* @param {number} target
* @return {number}
*/
var threeSumClosest = function(nums, target) {
let result = Infinity;
let len = nums.length;
if(len <= 3){
return nums.reduce((a,b)=>a+b,0);
}
nums.sort((a,b)=>a-b);
for(let k = 0; k<len-2; k++){
if(k>0 && nums[k-1] === nums[k]){
continue;
}
let i = k + 1;
let j = len -1;
while(i<j){
let count = nums[k] + nums[i] + nums[j];
if(count === target){
return target;
}
if(Math.abs(result - target) > Math.abs(count - target)){
result = count;
}
if(count > target){
j--
}else{
i ++
}
}
}
return result;
};