您的位置:首页 > 其它

LeetCode 3Sum Closest

2014-12-03 19:46 330 查看
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).


class Solution {
public:
int threeSumClosest(vector<int> &num, int target) {
sort(num.begin(),num.end());
int min = INT_MAX;
int len = num.size();
int sum = 0;
int result = 0;
for(int i=0;i<len-2;i++)
{
int j = i + 1;
int k = len - 1;
while(j<k)
{
sum = num[i] + num[j] + num[k];
if(abs(sum-target) < min)
{
min = abs(sum - target);
result = num[i] + num[j] + num[k];
}
if(sum < target)j++;
if(sum > target)k--;
if(sum == target)
return result;
}
}
return result;
}
};


解题思路:最直观的想法,三次循环,时间复杂度o(n^3),显然不能接受。

    想到剪枝,在2次循环时,有很多情况是不必要走的,即如果得知num[i] + num[j] + num[k] > target的情况下,表明num[i] + num[m] + num[k] > target,其中m > j,同理还有小于的情况,于是复杂度可以降为o(n^2)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: