LeetCode 128. (找出)最长【数字连续的】序列(Medium)

在这里插入图片描述
题目链接

  1. 最长连续序列

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

class Solution:
    ### 0130 哈希表遍历(44 ms,15.6 MB)
    def longestConsecutive(self, nums: List[int]) -> int:
        if not nums: return 0

        max_cnt = 1 # 至少从1开始
        st = set(nums)

        # 遍历每一个数
        for num in nums:
            # 若当前数不存在比它小1的数,则进行搜索
            if num - 1 not in st:
                # 统计从当前数开始的最大长度,至少从1开始
                cur_cnt = 1
                next_num = num

                # 只有哈希表中还存在下一个数,则循环累加长度
                while next_num + 1 in st:
                    cur_cnt += 1
                    next_num += 1
                
                max_cnt = max(max_cnt, cur_cnt)
        
        return max_cnt
  • 返回最长数字连续序列
def longestConsecutive(nums) -> int:
    if not nums: return 0

    max_cnt = 1 # 至少从1开始
    st = set(nums)

    # 遍历每一个数
    for num in nums:
        # 若当前数不存在比它小1的数,则进行搜索
        if num - 1 not in st:
            # 统计从当前数开始的最大长度,至少从1开始
            cur_cnt = 1
            next_num = num

            # 只有哈希表中还存在下一个数,则循环累加长度
            while next_num + 1 in st:
                cur_cnt += 1
                next_num += 1

            if max_cnt < cur_cnt:
                max_cnt = cur_cnt
                ls = list(range(num, num + max_cnt))

    return max_cnt, ls
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值