美文网首页
[LeetCode]15、三数之和

[LeetCode]15、三数之和

作者: 河海中最菜 | 来源:发表于2019-07-27 14:51 被阅读0次

题目描述

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

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

例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],

满足要求的三元组集合为:
[
[-1, 0, 1],
[-1, -1, 2]
]

思路

1、二分查找
2、固定一个,剩下来的进行二分

class Solution:
    def threeSum(self, nums):
        if not nums or len(nums) < 3:
            return []
        nums.sort()
        res = []
        for i in range(len(nums)-2):
            if i > 0 and nums[i] == nums[i - 1]:
                continue
            # 去重
            left, right = i + 1, len(nums) - 1
            while left < right:
                if nums[left] + nums[right] == -nums[i]:
                    res.append([nums[i], nums[left], nums[right]])
                    while left + 1 < right and nums[left] == nums[left + 1]:
                        left += 1
                    while right-1 > left and nums[right] == nums[right - 1] :
                        right -= 1
                    left += 1
                    right -= 1
                elif nums[left] + nums[right] > -nums[i]:
                    right -= 1
                else:
                    left += 1
        return res
AC15

相关文章

网友评论

      本文标题:[LeetCode]15、三数之和

      本文链接:https://www.haomeiwen.com/subject/lckerctx.html