You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
给定一位研究者论文被引用次数的数组(被引用次数是非负整数),数组已经按照 升序排列。编写一个方法,计算出研究者的 h 指数。
h 指数的定义: h 代表“高引用次数”(high citations),一名科研人员的 h 指数是指他(她)的 (N 篇论文中)总共 有 h 篇论文分别被引用了 至少 h 次。(其余的 N - h 篇论文每篇被引用次数 不超过 h 次。)
Example
Input: citations = [3,0,6,1,5]
Output: 3
Explanation: [3,0,6,1,5] 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, her h-index is 3.
Note
如果 h 有多有种可能的值 ,h 指数是其中最大的那个。
The text was updated successfully, but these errors were encountered:
274. H-Index
给定一位研究者论文被引用次数的数组(被引用次数是非负整数),数组已经按照 升序排列。编写一个方法,计算出研究者的
h
指数。h 指数的定义: h 代表“高引用次数”(high citations),一名科研人员的 h 指数是指他(她)的 (N 篇论文中)总共 有 h 篇论文分别被引用了 至少 h 次。(其余的 N - h 篇论文每篇被引用次数 不超过 h 次。)
Example
Note
The text was updated successfully, but these errors were encountered: