博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode:3Sum
阅读量:5023 次
发布时间:2019-06-12

本文共 1427 字,大约阅读时间需要 4 分钟。

Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.

Note: The solution set must not contain duplicate triplets.

For example, given array S = [-1, 0, 1, 2, -1, -4],

A solution set is:
[
[-1, 0, 1],
[-1, -1, 2]]

思路

暴力的话,时间复杂度是O(n^3),试了下,肯定不行的,我开始想能不能转换2sum,就是先遍历一遍,求出两个数之和,然后再找这两个数之和存不存在就行。提交了一下,时间上还是过不了,想了半天,就只能用排序的方法,这样的话,我只需要从最左和最右开始找,有点二分的味道。这样的话,最坏情况是O(n^2)。

class Solution(object):    def threeSum(self, nums):        """        :type nums: List[int]        :rtype: List[List[int]]        """        length = len(nums)        nums.sort() #排序        last = length        result = []        for i in range(length - 2):            if(i > 0 and nums[i-1] == nums[i]):                continue #如果i和上次重复了,那么就不用找了!            l,r = i+1,length-1            flag = True            while(l < r):                s = nums[i] + nums[l] + nums[r]                if s < 0:                    l += 1                elif s > 0:                    r -= 1                else:                    result.append([nums[i],nums[l],nums[r]])                    while(l < r and nums[l] == nums[l+1]):                        l += 1                    while(l < r and nums[r] == nums[r-1]):                        r -= 1                    l += 1                    r -= 1        return result

转载于:https://www.cnblogs.com/xmxj0707/p/8447967.html

你可能感兴趣的文章
python selenium向<sapn>标签中写入内容
查看>>
JS常用坐标
查看>>
使用”结构化的思考方式“来编码和使用”流程化的思考方式“来编码,孰优孰劣?...
查看>>
C#调用斑马打印机打印条码标签(支持COM、LPT、USB、TCP连接方式和ZPL、EPL、CPCL指令)【转】...
查看>>
关于git的认证方式
查看>>
字符串按照字典序排列
查看>>
IOS 开发调用打电话,发短信
查看>>
CI 框架中的日志处理 以及 404异常处理
查看>>
keepalived介绍
查看>>
css3 标签 background-size
查看>>
python itertools
查看>>
Linux内核调试技术——jprobe使用与实现
查看>>
样式、格式布局
查看>>
ubuntu设计文件权限
查看>>
Vue双向绑定原理详解
查看>>
Android基础总结(5)——数据存储,持久化技术
查看>>
关于DataSet事务处理以及SqlDataAdapter四种用法
查看>>
bootstrap
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
工程经验总结之吹水"管理大境界"
查看>>