力扣 等级简单 数组 第三大数
前半个月做的一道题,今天把它完善了。
package bad;//首先要建立一个Package
import java.util.TreeSet;//引入util类中的TreeSet类
public class bigThird {
public int thirdMax(int[] nums){
if(numsnull || nums.length0)//判断数组的长度数组是否为零
throw new RuntimeException(“error”);//抛出异常
TreeSet set=new TreeSet<>();//参考二叉树
for(Integer elem:nums){//遍历 找出第三大数
set.add(elem);//向集合中添加对象
if(set.size()>3) set.remove(set.first());//移除指定对象(the first element)
}yi
return set.size()❤️?set.last():set.first();//返回最后一个元素
}
public static void main(String[] args){
int[] nums={11,33,55,2,67};//定义数组
bigThird r=new bigThird();//创建对象
r.thirdMax(nums);//对象.类名();
System.out.println(r.thirdMax(nums));//输出
}
}
有误的地方或者有补充的地方希望能告诉我一声,让我能及时纠正。