LintCode 5---第k大元素
Posted cnmoti
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode 5---第k大元素相关的知识,希望对你有一定的参考价值。
import java.util.Arrays; public class Lint5 { /* * 第k大的元素 */ public static void main(String[] args) { int[] nums = new int[] {1,4,5,6,2}; System.out.println(kthLargestElement(2, nums)); } public static int kthLargestElement(int n, int[] nums) { n --; Arrays.sort(nums); return nums[nums.length-n-1]; } }
以上是关于LintCode 5---第k大元素的主要内容,如果未能解决你的问题,请参考以下文章