LeetCode刷题实战414:第三大的数
Given an integer array nums, return the third distinct maximum number in this array. If the third maximum does not exist, return the maximum number.
示例
示例 1:
输入:[3, 2, 1]
输出:1
解释:第三大的数是 1 。
示例 2:
输入:[1, 2]
输出:2
解释:第三大的数不存在, 所以返回最大的数 2 。
示例 3:
输入:[2, 2, 3, 1]
输出:1
解释:注意,要求返回第三大的数,是指在所有不同数字中排第三大的数。
此例中存在两个值为 2 的数,它们都排第二。在所有不同数字中排第三大的数为 1 。
解题
我们可以利用TreeSet 。把元素都插入TreeSet里面,会自动升序排列 。
在插入过程中,一直维护一个长度为3的,如果大于3,那么删除最小的那个
插入完毕
没有第三个 就返回最后一个(最大值) ,否则返回第一个
class Solution {
public int thirdMax(int[] nums) {
TreeSet<Integer> set=new TreeSet();
for(int i:nums){
set.add(i);
if(set.size()>3){
set.pollFirst();
}
}
if(set.size()<3){
return set.pollLast();
}else{
return set.pollFirst();
}
}
}