美文网首页leetcode题解
【Leetcode】15—3Sum

【Leetcode】15—3Sum

作者: Gaoyt__ | 来源:发表于2019-07-18 23:13 被阅读0次
    一、题目描述

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

    例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],
    
    满足要求的三元组集合为:
    [
      [-1, 0, 1],
      [-1, -1, 2]
    ]
    

    相关题目:leetcode001-TwoSum

    二、代码实现
    方法一:双指针法
    class Solution(object):
        def threeSum(self, nums):
            """
            :type nums: List[int]
            :rtype: List[List[int]]
            """
            
            nums.sort()
            res = []
            for i in range(len(nums)-2):
                if i>0 and nums[i] == nums[i-1]: continue
                left = i + 1
                right = len(nums) - 1
                if nums[i] > 0: return res
                while left < right:
                    if nums[i] + nums[left] + nums[right] == 0:             
                        while left < right and nums[left+1] == nums[left]:
                            left = left + 1
                        while left < right and nums[right-1] == nums[right]:
                            right = right -1                    
                        res.append([nums[i], nums[left], nums[right]])             
                        right = right -1
                        left = left + 1                           
                    elif nums[i] + nums[left] + nums[right] < 0:
                        left = left + 1
                    else:
                        right = right - 1
            return res
    

    相关文章

      网友评论

        本文标题:【Leetcode】15—3Sum

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