[LeetCode]3Sum Closest题解
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).
这道题的解题思路是比较常规的。首先将数组排序,设置三个下标first、second、third分别初始化为0,1,nums.size()-1。
1、如果这三个下标对应的数据之和大于target,那么就把third减一, 
2、如果小于target,就把second加一。 
3、如果等于target,结束查找,返回这个值。
每当second和third相遇的时候就让first+1,重置second = first + 1,thrid = nums.size() - 1。 
这样就可以保证扫描到所有可能的结果,并且算法复杂度为O(n^2).
代码如下:
class Solution {
public:
    int threeSumClosest(vector<int>& nums, int target) {
        if(nums.size()<3) return 0;
        int first = 0, second = 1, third = nums.size() - 1;
        sort(nums.begin(),nums.end());
        int re = nums[0] + nums[1] + nums[2];
        for(;first < nums.size()-2;first++){
            second = first + 1;
            third = nums.size() - 1;
            while(second < third){
                int temp = nums[first] + nums[second] + nums[third];
                if(abs(re - target) > abs(temp - target)) re = temp;
                if(temp == target){
                    return temp;
                }
                else if(temp < target){
                    second ++;
                }
                else{
                    third --;
                }
            }
        }
        return re;
    }
};[LeetCode]3Sum Closest题解的更多相关文章
- [LeetCode] 3Sum Closest 最近三数之和
		Given an array S of n integers, find three integers in S such that the sum is closest to a given num ... 
- Leetcode  3Sum Closest
		Given an array S of n integers, find three integers in S such that the sum is closest to a given num ... 
- LeetCode 3Sum Closest (Two pointers)
		题意 Given an array S of n integers, find three integers in S such that the sum is closest to a given ... 
- LeetCode——3Sum Closest
		Question Given an array S of n integers, find three integers in S such that the sum is closest to a ... 
- leetcode 3Sum Closest python
		class Solution(object): def threeSumClosest(self, nums, target): """ :type nums: List ... 
- LeetCode   3Sum Closest 最近似的3sum(2sum方法)
		题意:找到最接近target的3个元素之和,并返回该和. 思路:用2个指针,时间复杂度O(n^2). int threeSumClosest(vector<int>& nums, ... 
- 《LeetBook》leetcode题解(16):3Sum Closest [M]
		我现在在做一个叫<leetbook>的免费开源书项目,力求提供最易懂的中文思路,目前把解题思路都同步更新到gitbook上了,需要的同学可以去看看 书的地址:https://hk029.g ... 
- LeetCode之“散列表”:Two Sum && 3Sum && 3Sum Closest && 4Sum
		1. Two Sum 题目链接 题目要求: Given an array of integers, find two numbers such that they add up to a specif ... 
- [LeetCode][Python]16: 3Sum Closest
		# -*- coding: utf8 -*-'''__author__ = 'dabay.wang@gmail.com' 16: 3Sum Closesthttps://oj.leetcode.com ... 
随机推荐
- grunt 常用插件
			grunt-contrib-uglify:代码压缩 grunt-contrib-jshint:检查js拼写错误 csslint:检查css语法错误 
- FlowPortal-BPM——离线审批(邮箱审批)配置
			一.将系统文件复制到安装目录下 二.以管理员身份运行bat安装程序 三.开启邮件离线审批服务 四.创建数据库表(JAVA数据库 或 .Net数据库) 五.配置config文件(发件箱.收件箱.错误问题 ... 
- 基于Allwinner的Audio子系统分析(Android-5.1)
			前言 一直想总结下Audio子系统的博客,但是各种原因(主要还是自己懒>_<),一直拖到现在才开始重新整理,期间看过H8(Android-4.4),T3(Android-4.4),A64( ... 
- 求幂大法,矩阵快速幂,快速幂模板题--hdu4549
			hdu-4549 求幂大法.矩阵快速幂.快速幂 题目 M斐波那契数列 Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 ... 
- c#Filestream类(文件流)
			0.创建文件流几种方法: File.Open("a.txt",FileMode.Create,FileAccess.ReadWrite); File.OpenWrite(" ... 
- (转)OpenStack构架知识梳理
			http://www.cnblogs.com/kevingrace/p/8459034.html-------------------Openstack架构概念图-简单汇总 原文:http://www ... 
- docker 日志管理
			高效的监控和日志管理对保持生产系统持续稳定地运行以及排查问题至关重要. 在微服务架构中,由于容器的数量众多以及快速变化的特性使得记录日志和监控变得越来越重要.考虑到容器短暂和不固定的生命周期,当我们需 ... 
- MySQL 重命名数据库
			首先创建目标库 create database trgdb; 获取所有源库的表名 use information_schema; select table_name from TABLES where ... 
- 【es6】数值扩展
- Comet事件分析
			简介[ Introduction ] 使用APR或者NIO API作为连接器的基础,Tomcat能够提供一些在阻塞IO之上的有效扩展,用于支持Servlet API. [ With usage of ... 
