leetcode 274H-index

Posted stAr_1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 274H-index相关的知识,希望对你有一定的参考价值。

public int hIndex(int[] citations) {
        /*
        唠唠叨叨说了很多   其实找到一个数h,使得数组中至少有h个数大于等于这个数,
        其他N-h个数小于这个数,h可能有多个,求最大的那个
         */
        if (citations.length==0)
            return 0;
        //sort方法是将原数组排序,会改变原数组
        Arrays.sort(citations);
        int res = 0;
        for (int i = citations.length-1; i >=0 ; i--) {
            if (citations[i]>=citations.length-i)
            {
                res++;
            }
            else
                break;
        }
        return res;
    }

 

以上是关于leetcode 274H-index的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode #274 H-Index

[LeetCode] 274. H-Index Java

LeetCode OJ 274. H-Index

[LeetCode] 274. H-Index

[LeetCode] 274. H-Index H指数

[Leetcode] Sort, Hash -- 274. H-Index