c语言一维数组怎么快速排列
255
2022-09-27
16. 3Sum Closest**
16. 3Sum Closest**
an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input would have exactly one solution.
Example:
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).
给定一个整数数组 S, 在其中找到 3 个整数使得它们的和接近一个给定的 target. 返回这 3 个数的和.
解题思路
思路: 类似于 15. 3Sum. 为了得到最接近 target 的值, 要计算使 std::abs(target - sum) 最小的那个 sum. 为了得到这些 sum, 和 15. 3Sum 一样, 首先对数组进行排序, 然后固定 nums[i], 再对后面的内容进行 2Sum.
C++ 实现 1
代码中使用 res 来记录每次找到的最小的三元组 a + b + c 之和.
class Solution {public: int threeSumClosest(vector
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~