Leetcode 274.H指数

H指数

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

h 指数的定义: "一位有 h 指数的学者,代表他(她)的 N 篇论文中至多 h 篇论文,分别被引用了至少 h 次,其余的 N - h 篇论文每篇被引用次数不多于 h 次。"

示例:

输入: citations = [3,0,6,1,5]

输出: 3

解释: 给定数组表示研究者总共有 5 篇论文,每篇论文相应的被引用了 3, 0, 6, 1, 5 次。

由于研究者有 3 篇论文每篇至少被引用了 3 次,其余两篇论文每篇被引用不多于 3 次,所以她的 h 指数是 3。

说明: 如果 h 有多种可能的值,h 指数是其中最大的那个。

先对序列排序,然后从大到小遍历数组,h值为从1到n,若元素满足num[i]>h,继续遍历,否则跳出循环,返回h即可。

 1 import java.util.Arrays;
 2
 3 class Solution {
 4     public int hIndex(int[] citations) {
 5         Arrays.sort(citations);
 6         int n=citations.length;
 7         int[] myCitations=new int[n];
 8         for(int i=n-1;i>=0;i--){
 9             myCitations[n-1-i]=citations[i];
10         }
11         int i=0;
12         for(;i<n;i++){
13             if(myCitations[i]>i){
14                 continue;
15             }else{
16                 break;
17             }
18         }
19         return i;
20     }
21 }

原文地址:https://www.cnblogs.com/kexinxin/p/10204956.html

时间: 2024-10-10 12:25:51

Leetcode 274.H指数的相关文章

Leetcode[274]H指数&amp;[904]水果成篮

最近忙于论文和实习,好久没有刷题了,之前立下的关于triplet loss的flag也莫得了. 某公司压力太大,已离职,希望利用好学生生涯最后一点时间,认认真真找个工作,扎扎实实提高自己技术水平. 其实这两道题都特别简单,均是自己在没有提示的情况下做出来的. 第一道题一个排序再一个遍历就结束了,我从没见过这么简单的medium,是因为我的方法太笨了吗? bool compare(const int a, const int b) {return b < a;} class Solution {

[LeetCode] 274. H-Index H指数

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 a

(Java) LeetCode 274. H-Index —— H指数

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 a

LeetCode:H-Index、H-Index II - H指数

1.题目名称 H-Index(H指数) 2.题目地址 https://leetcode.com/problems/h-index/ 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. 中文:给出一个数组记录一个研究者各篇文章的引用数,写一个函数计算这

[LeetCode] 275. H-Index II H指数 II

Follow up for H-Index: What if the citations array is sorted in ascending order? Could you optimize your algorithm? Hint: Expected runtime complexity is in O(log n) and the input is sorted. 274. H-Index H指数 的拓展.输入的数组是有序的,让我们优化算法.提示(现在题目中没有提示了):O(logn

[LeetCode] H-Index II 求H指数之二

Follow up for H-Index: What if the citations array is sorted in ascending order? Could you optimize your algorithm? Hint: Expected runtime complexity is in O(log n) and the input is sorted. 这题是之前那道H-Index 求H指数的拓展,输入数组是有序的,让我们在O(log n)的时间内完成计算,看到这个时间复

[LeetCode] H-Index 求H指数

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 a

274 H-Index H指数

给定一位研究者的论文被引用次数的数组(被引用次数是非负整数).写一个方法计算出研究者的H指数.H-index定义: "一位科学家有指数 h 是指他(她)的 N 篇论文中至多有 h 篇论文,分别被引用了至少 h 次,其余的 N - h 篇论文每篇被引用次数不多于 h 次."例如,给定 citations = [3, 0, 6, 1, 5],意味着研究者总共有 5 篇论文,每篇论文相应的被引用了 3, 0, 6, 1, 5 次.由于研究者有 3 篇论文每篇至少被引用了 3 次,其余两篇论文

LeetCode OJ:H-Index(H指数)

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 a