zoukankan      html  css  js  c++  java
  • 【leetcode 简单】 第九十八题 第三大的数

    给定一个非空数组,返回此数组中第三大的数。如果不存在,则返回数组中最大的数。要求算法时间复杂度必须是O(n)。

    示例 1:

    输入: [3, 2, 1]
    
    输出: 1
    
    解释: 第三大的数是 1.
    

    示例 2:

    输入: [1, 2]
    
    输出: 2
    
    解释: 第三大的数不存在, 所以返回最大的数 2 .
    

    示例 3:

    输入: [2, 2, 3, 1]
    
    输出: 1
    
    解释: 注意,要求返回第三大的数,是指第三大且唯一出现的数。
    存在两个值为2的数,它们都排第二。
    

    class Solution:
        def thirdMax(self, n):
            """
            :type n: int
            :rtype: List[str]
            """
            first = second = third = float("-inf")
            if len(set(n)) <=2 : return max(n)
            for i in n:
                if i > first:
                    first,second,third = i,first,second
                elif first > i > second:
                    second,third=i,second
                elif second >  i > third:
                    third = i
            return third if third != -65535 else first
  • 相关阅读:
    OSGi for C/C++
    Tizen NPPlugin开发
    Trove4j
    [Tizen]某些目录下存放的东西
    OpenMobile's Application Compatibility Layer (ACL)
    params
    页面无法访问
    websevice 服务前台和后台
    SQL 创建存储过程
    UpdatePanel
  • 原文地址:https://www.cnblogs.com/flashBoxer/p/9545556.html
Copyright © 2011-2022 走看看