国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

LeetCode 16. 3Sum Closest

2019-11-11 04:15:12
字體:
供稿:網(wǎng)友

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

分析 先排序,然后左右夾逼,復(fù)雜度 O(n2)。

代碼

class Solution {public: int threeSumClosest(vector<int>& nums, int target) { int min_gap = INT_MAX; int result = 0; sort(nums.begin(), nums.end()); for (auto a = nums.begin(); a != PRev(nums.end(), 2); ++a) { auto b = next(a); auto c = prev(nums.end()); while (b < c) { int sum = *a + *b + *c; int gap = abs(sum - target); if (gap < min_gap) { min_gap = gap; result = sum; } if (sum < target) ++b; else --c; } } return result; }};
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 新源县| 比如县| 肥乡县| 和顺县| 深泽县| 通辽市| 黄龙县| 大方县| 汤原县| 中超| 南乐县| 蓬莱市| 重庆市| 化德县| 沐川县| 明溪县| 武邑县| 民乐县| 漳州市| 无极县| 曲沃县| 建始县| 阿拉尔市| 诸城市| 浙江省| 湖北省| 蒙山县| 广元市| 清新县| 临邑县| 鹤壁市| 宜章县| 漳州市| 贵港市| 收藏| 凤台县| 武陟县| 崇仁县| 金塔县| 黄陵县| 荥阳市|