python-leetcode-三数之和

15. 三数之和 - 力扣(LeetCode)

python 复制代码
class Solution:
    def threeSum(self, nums: List[int]) -> List[List[int]]:
        nums.sort()  # 排序
        n = len(nums)
        res = []

        for i in range(n):
            # 剪枝:如果当前数 > 0,三数之和不可能为 0
            if nums[i] > 0:
                break

            # 去重:跳过重复元素
            if i > 0 and nums[i] == nums[i - 1]:
                continue

            # 双指针
            left, right = i + 1, n - 1

            while left < right:
                total = nums[i] + nums[left] + nums[right]

                if total == 0:
                    res.append([nums[i], nums[left], nums[right]])

                    # 去重:跳过相同的 left 和 right
                    while left < right and nums[left] == nums[left + 1]:
                        left += 1
                    while left < right and nums[right] == nums[right - 1]:
                        right -= 1

                    left += 1
                    right -= 1

                elif total < 0:
                    left += 1  # 和偏小,左指针右移
                else:
                    right -= 1  # 和偏大,右指针左移

        return res   
相关推荐
还是车万大佬38 分钟前
C语言与ASCII码应用之简单加密
c语言·开发语言·算法
q567315231 小时前
利用Python实现Union-Find算法
android·python·算法
岸榕.1 小时前
551 灌溉
数据结构·c++·算法
浪前1 小时前
【算法】移除元素
开发语言·数据结构·算法
bachelores2 小时前
数据结构-图
数据结构·算法·图论
XuanRanDev2 小时前
【数据结构】 树的遍历:先序、中序、后序和层序
数据结构·算法·深度优先
专注API从业者3 小时前
如何处理获取到的淘宝评论数据以进行有效的商品品控?
大数据·开发语言·数据库·算法
高 朗3 小时前
【算法刷题】leetcode hot 100 滑动窗口
算法·leetcode·职场和发展·滑动窗口
柠石榴3 小时前
【练习】力扣 热题100 两数之和
开发语言·c++·算法·leetcode