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

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

LeetCode 16. 3Sum Closest

2019-11-11 04:14:03
字體:
來源:轉載
供稿:網友

描述 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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 建昌县| 天柱县| 德令哈市| 闽清县| 石城县| 安吉县| 洛浦县| 邯郸县| 潼南县| 和田县| 怀化市| 湛江市| 平果县| 敖汉旗| 六枝特区| 南漳县| 辽宁省| 桃园市| 河北区| 鹤山市| 米脂县| 高要市| 陵川县| 桐柏县| 张家界市| 马关县| 大荔县| 贡觉县| 南木林县| 丰城市| 本溪市| 霍城县| 怀安县| 易门县| 仁化县| 崇信县| 咸丰县| 馆陶县| 敦煌市| 横山县| 晴隆县|