会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
星辰大海。
博客园
首页
新随笔
联系
订阅
管理
2019年9月3日
leetcode215.数组中的第k个最大元素(快排/堆排序 java)***
摘要: class Solution { public int findKthLargest(int[] nums, int k) { int len=nums.length; int left=0,right=len-1; int target=len-k; //第k大的元素的数组下标就是len-k,可通过找规律得出 while(true){ int index=partition(nums,left,
阅读全文
posted @ 2019-09-03 21:24 星辰大海。
阅读(596)
评论(0)
推荐(0)
编辑
公告