1 第三大的数

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

示例 1:

输入: [3, 2, 1]
输出: 1

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

  1. class Solution {
  2. public int thirdMax(int[] nums) {
  3. long first=Long.MIN_VALUE,second=Long.MIN_VALUE,third=Long.MIN_VALUE;
  4. for(long num:nums){
  5. if(num > first){
  6. third = second;
  7. second = first;
  8. first = num;
  9. }else if(num<first && num > second){
  10. third = second;
  11. second = num;
  12. }else if(num < second && num>third){
  13. third = num;
  14. }
  15. }
  16. return (third == Long.MIN_VALUE || third == second) ?(int)first:(int)third;
  17. }
  18. }