博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
三元组相加获得target
阅读量:5979 次
发布时间:2019-06-20

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

三元组相加获得target

3Sum

  • 给定一个数组,选择三个元素相加,结果为target,找出所有符合的三元组

  • 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]

example 1

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

思路

  1. 乱序数组,需要找到所有组合,需要三层循环,复杂度为O(n³)。

  2. 可以先排序,排序后只需要两层循环,复杂度为O(n²)。第一层循环遍历所有元素,第二层循环由于数组已经排序,只需要头尾两个指针像中间靠拢,一但三个元素相加为target,则添加此三元组,然后继续像中间靠拢扫描。

  3. 需要避免重复的三元组被加入

代码

class Solution(object):    def threeSum(self, nums):        """        :type nums: List[int]        :rtype: List[List[int]]        """        nums.sort()        ret = []        for i in range(len(nums) - 2):            # 避免重复            if i > 0 and nums[i] == nums[i-1]:                continue            j, k = i + 1, len(nums) - 1            while j < k:                if nums[i] + nums[j] + nums[k] == 0:                    ret.append([nums[i], nums[j], nums[k]])                    j += 1                    k -= 1                    # 避免重复                    while j < k and nums[j] == nums[j - 1]:                        j += 1                    while j < k and nums[k] == nums[k + 1]:                        k -= 1                elif nums[i] + nums[j] + nums[k] < 0:                    j += 1                else:                    k -= 1        return ret

本题以及其它leetcode题目代码github地址:

转载地址:http://xgoox.baihongyu.com/

你可能感兴趣的文章
&& 和 || 的一些用法
查看>>
全网备份案例
查看>>
使用Akka Http,ActiveMQ搭建一个邮件发送服务器
查看>>
kvm starting domain: cannot send monitor command
查看>>
Tomcat主配置文件Server.xml详解
查看>>
Java拾遗:006 - Java反射与内省
查看>>
中考在即,您为孩子选择什么?--读<<招生全攻略>>有感
查看>>
深入剖析 HTML5
查看>>
基础知识笔记之正则表达式
查看>>
Mysql mysql.server启动脚本详解 .
查看>>
网格(GridView)+图片(ImageView)+文字(TextView)
查看>>
JS闭包理解
查看>>
安装IDSM-2系统映像到Catalyst IOS Software中
查看>>
华为模拟器eNSP
查看>>
jquery遇上Ajax
查看>>
我的友情链接
查看>>
要勇于说不(转)
查看>>
Android Studio 第六十四期 - Android业务组件化之URL Scheme使用
查看>>
python getopt模块
查看>>
IdentityServer4 退出登录后,跳转到原来页面
查看>>