[leetcode-274]H-Index(java)

2293 단어 leetcode
문제 설명: 연구자 의 일련의 인용 (각 인용 은 부정 적 정수 가 아 님) 을 감안 할 때, 연구자 의 h - 인덱스 를 계산 하 는 기능 을 작성 합 니 다.
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;
    }
}

좋은 웹페이지 즐겨찾기