标签:空间复杂度 etc while class 时间复杂度 leetcode line cto for
从给定的数组中选出三个数,使得三个数的和最接近目标值。
class Solution {
public:
int threeSumClosest(vector<int>& nums, int target) {
int len = nums.size();
sort(nums.begin(), nums.end());
int L, R;
int res = nums[0] + nums[1] + nums[2];
for(int i = 0; i < len; ++i)
{
L = i + 1;
R = len - 1;
while(L < R)
{
int sum = nums[i] + nums[L] + nums[R];
if(sum == target) return target;
if(abs(sum - target) < abs(res - target)) res = sum;
if(sum > target)
--R;
else
++L;
}
}
return res;
}
};
排序 + 指针。
标签:空间复杂度 etc while class 时间复杂度 leetcode line cto for
原文地址:https://www.cnblogs.com/songjy11611/p/12330767.html