摘要: 215. Kth Largest Element in an Array 快速排序法,选择一个数,比这个数大的交换到左边,比这个数小的交换到右边。 class Solution { public int findKthLargest(int[] nums, int k) { shuffle(nums 阅读全文
posted @ 2019-11-10 16:19 阿飞哦 阅读(101) 评论(0) 推荐(0) 编辑