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

首頁 > 學院 > 開發設計 > 正文

LeetCode 16. 3Sum Closest

2019-11-11 03:45:50
字體:
來源:轉載
供稿:網友

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

分析 先排序,然后左右夾逼,復雜度 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; }};
上一篇:凌亂的yyy

下一篇:三羊獻瑞

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 霍山县| 仲巴县| 增城市| 广宁县| 英超| 视频| 射阳县| 广平县| 大安市| 顺平县| 瑞金市| 泰顺县| 铁力市| 河曲县| 玉山县| 沁源县| 荥经县| 准格尔旗| 甘洛县| 靖州| 河西区| 娄烦县| 武义县| 平舆县| 竹山县| 确山县| 濮阳市| 安乡县| 监利县| 临汾市| 玉田县| 博白县| 荔浦县| 诸城市| 酒泉市| 卢湾区| 南宁市| 郑州市| 新密市| 克东县| 凤城市|