zl程序教程

您现在的位置是:首页 >  其他

当前栏目

LeetCode - #15 三数之和(Top 100)

2023-04-18 16:14:26 时间

前言

本题为 LeetCode 前 100 高频题

我们社区陆续会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。微博:@故胤道长[1])的 Swift 算法题题解整理为文字版以方便大家学习与阅读。

LeetCode 算法到目前我们已经更新了 14 期,我们会保持更新时间和进度(周一、周三、周五早上 9:00 发布),每期的内容不多,我们希望大家可以在上班路上阅读,长久积累会有很大提升。

不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。如果大家有建议和意见欢迎在文末留言,我们会尽力满足大家的需求。

难度水平:中等

1. 描述

给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有和为 0 且不重复的三元组。

注意: 答案中不可以包含重复的三元组。

2. 示例

示例 1

输入:nums = [-1,0,1,2,-1,-4]
输出:[[-1,-1,2],[-1,0,1]]

示例 2

输入:nums = []
输出:[]

示例 3

输入:nums = [0]
输出:[]

约束条件:

  • 0 <= nums.length <= 3000
  • -10^5 <= nums[i] <= 10^5

3. 答案

class ThreeSum {
    func threeSum(_ nums: [Int]) -> [[Int]] {
        var res = [[Int]]()
        
        guard nums.count >= 3 else {
            return res
        }
        
        let nums = nums.sorted()
        
        for i in 0..<nums.count - 2 {
            if i > 0 && nums[i] == nums[i - 1] {
                continue
            }
            
            let firstNum = nums[i], remainingSum = -firstNum
            var m = i + 1, n = nums.count - 1
            
            while m < n {
                if nums[m] + nums[n] == remainingSum {
                    res.append([firstNum, nums[m], nums[n]])
                    
                    repeat {
                        m += 1
                    } while nums[m] == nums[m - 1] && m < n
                    
                    repeat {
                        n -= 1
                    } while nums[n] == nums[n + 1] && m < n
                } else if nums[m] + nums[n] < remainingSum {
                    m += 1
                } else {
                    n -= 1
                }
            }
        }
        
        return res
    }
}
  • 主要思想:对数组进行排序并遍历,根据它们的和大于或不大于目标,向左递增或向右递减
  • 时间复杂度:O(n^2)
  • 空间复杂度:O(nC3)

该算法题解的仓库:LeetCode-Swift[2]

点击前往 LeetCode[3] 练习

关于我们

Swift社区是由 Swift 爱好者共同维护的公益组织,我们在国内以微信公众号的运营为主,我们会分享以 Swift实战SwiftUlSwift基础为核心的技术内容,也整理收集优秀的学习资料。

特别感谢 Swift社区 编辑部的每一位编辑,感谢大家的辛苦付出,为 Swift社区 提供优质内容,为 Swift 语言的发展贡献自己的力量,排名不分先后:张安宇@微软[4]戴铭@快手[5]展菲@ESP[6]倪瑶@Trip.com[7]杜鑫瑶@新浪[8]韦弦@Gwell[9]张浩@讯飞[10]张星宇@ByteDance[11]郭英东@便利蜂[12]

参考资料

[1]@故胤道长: https://m.weibo.cn/u/1827884772

[2]LeetCode-Swift: https://github.com/soapyigu/LeetCode-Swift

[3]LeetCode: https://leetcode.com/problems/3sum

[4]张安宇: https://blog.csdn.net/mobanchengshuang

[5]戴铭: https://ming1016.github.io

[6]展菲: https://github.com/fanbaoying

[7]倪瑶: https://github.com/niyaoyao

[8]杜鑫瑶: https://weibo.com/u/3878455011

[9]韦弦: https://www.jianshu.com/u/855d6ea2b3d1

[10]张浩: https://github.com/zhanghao19920218

[11]张星宇: https://github.com/bestswifter

[12]郭英东: https://github.com/EmingK