[leetcode-274]H-Index(java)
2293 단어 leetcode
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.
분석: 이 문제 의 사 고 는 먼저 배열 을 정렬 한 다음 에 뒤에서 앞으로 옮 겨 다 니 며 count 변 수 를 유지 하 는 것 입 니 다. count 값 이 현재 의 값 보다 크 거나 같 을 때 돌아 갈 수 있 습 니 다.마지막 으로 순환 을 종료 할 때 까지 되 돌아 오지 않 으 면 배열 의 수가 count 보다 많 음 을 나타 내 고 count 로 돌아 갑 니 다.이 때 0 개의 수가 count 보다 적 고 count 수가 count 보다 많 기 때문이다.
코드 는 다음 과 같 습 니 다: 360 ms
public class Solution {
public int hIndex(int[] citations) {
int size = citations.length;
if(size<=0)
return 0;
Arrays.sort(citations);
int count = 0;
for(int i = size-1;i>=0;i--){
if(count>=citations[i])
return Math.max(count,citations[i]);
count++;
}
return count;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
0부터 시작하는 LeetCode Day8 「1302. Deepest Leaves Sum」해외에서는 엔지니어의 면접에 있어서 코딩 테스트라고 하는 것이 행해지는 것 같고, 많은 경우, 특정의 함수나 클래스를 주제에 따라 실장한다고 하는 것이 메인이다. 빠른 이야기가 본고장에서도 행해지고 있는 것 같은 코...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.