NC88. 寻找第K大(medium) 方法一:栈法 方法一:栈法 思路:同牛客-NC119-最小的K个数,求第K大等价于在小根堆中求第N-K+1小,所有改变遍历次数即可: import java.util.*; public class Solution { public int findKth(int[] a, int n, int K) { // write code here // 特判 int ret = 0...