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

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

LeetCode 16. 3Sum Closest

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

描述 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; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 武城县| 青田县| 云霄县| 嘉祥县| 临汾市| 施秉县| 平阳县| 杂多县| 龙川县| 隆安县| 许昌县| 丰顺县| 沙雅县| 商城县| 汝城县| 青海省| 磐石市| 阳曲县| 铁力市| 连云港市| 江西省| 常宁市| 甘南县| 社旗县| 长兴县| 仲巴县| 华容县| 玉龙| 信阳市| 土默特左旗| 临沭县| 澳门| 太原市| 那曲县| 绥棱县| 清徐县| 门源| 阳朔县| 宜州市| 即墨市| 青河县|