每日leetcode-数组-274. H 指数

分类:数组-数组元素的遍历

题目描述:

给定一位研究者论文被引用次数的数组(被引用次数是非负整数)。编写一个方法,计算出研究者的 h 指数。

h 指数的定义:h 代表“高引用次数”(high citations),一名科研人员的 h 指数是指他(她)的 (N 篇论文中)总共有 h 篇论文分别被引用了至少 h 次。且其余的 N - h 篇论文每篇被引用次数 不超过 h 次。

例如:某人的 h 指数是 20,这表示他已发表的论文中,每篇被引用了至少 20 次的论文总共有 20 篇。

class Solution:
    def hIndex(self, citations: List[int]) -> int:
        citations.sort()
        n,h = len(citations),0
        for index,item in enumerate(citations):
            mid = min(item,n-index)
            h = max(mid,h)
        return h
原文地址:https://www.cnblogs.com/LLLLgR/p/14729783.html