码迷,mamicode.com
首页 > 其他好文 > 详细

LintCode 5---第k大元素

时间:2019-05-06 01:03:56      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:color   arrays   string   str   turn   import   []   return   nbsp   

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大元素

标签:color   arrays   string   str   turn   import   []   return   nbsp   

原文地址:https://www.cnblogs.com/cnmoti/p/10817090.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!