博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode274. H-Index
阅读量:4222 次
发布时间:2019-05-26

本文共 1019 字,大约阅读时间需要 3 分钟。

Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher’s h-index.

According to the definition of h-index on Wikipedia: “A scientist has index h if h of his/her N papers have at least h citations each, and the other N − h papers have no more than h citations each.”

For example, given citations = [3, 0, 6, 1, 5], which means the researcher has 5 papers in total and each of them had received 3, 0, 6, 1, 5 citations respectively. Since the researcher has 3 papers with at least 3 citations each and the remaining two with no more than 3 citations each, his h-index is 3.

Note: If there are several possible values for h, the maximum one is taken as the h-index.

思路

原数组排序,遍历,当有n篇index>=index,则为H-index=n
喜欢有序的世界~~

python代码

class Solution(object):    def hIndex(self,citations):        citations.sort(reverse=True)        flag=0        for i in range(len(citations)):            if citations[i]>=i+1:                flag=flag+1        return flag

转载地址:http://vwqmi.baihongyu.com/

你可能感兴趣的文章
要考试--大敌当前
查看>>
linux 编译技术 6级强化
查看>>
扩大工作室?
查看>>
拜读ms的开源代码
查看>>
下一个技术瓶颈 ~~
查看>>
谢谢让我看到了这本书
查看>>
不牵手的浪漫
查看>>
姥姥的生日~~
查看>>
网游~~
查看>>
promise
查看>>
对过楼着火了~
查看>>
list
查看>>
放松了一个晚上,继续~~
查看>>
好久没来了~
查看>>
真tmd恶心~~
查看>>
fight for java
查看>>
小猪考试中~
查看>>
理解,promise~~
查看>>
微软之行
查看>>
Application OR Research
查看>>