zoukankan      html  css  js  c++  java
  • Leetcode414Third Maximum Number第三大的数

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

    示例 1:

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

    示例 2:

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

    示例 3:

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

    class Solution {
    public:
        int thirdMax(vector<int>& nums) {
            int first = -2147483648;//INT_MIN
            int second = -2147483648;
            int third = -2147483648;
            int cnt = 0;
            map<int, int> visit;
            for(int i = 0; i < nums.size(); i++)
            {
                if(visit[nums[i]] != 0)
                    continue;
                cnt++;
                if(nums[i] > first)
                {
                    third = second;
                    second = first;
                    first = nums[i];
                }
                else if(nums[i] > second)
                {
                    third = second;
                    second = nums[i];
                }
                else if(nums[i] > third)
                {
                    third = nums[i];
                }
                visit[nums[i]]++;
            }
            if(cnt > 2)
                return third;
            else
                return first;
        }
    };
  • 相关阅读:
    使用Microsoft.DirectX和Microsoft.DirectX.Sound进行录音时遇到的异常
    一个奇怪的TextChanged事件
    正则表达式
    lambda详解
    AOP统一处理请求
    SpringBoot表单参数验证
    208道Java常见面试题
    Java100道基础面试题
    Java多线程面试题
    Java编码规范
  • 原文地址:https://www.cnblogs.com/lMonster81/p/10434097.html
Copyright © 2011-2022 走看看