【leetcode】275. H 指数 II

 

int hIndex(int* citations, int citationsSize){
    if(citationsSize==0) return 0;
    int i,cnt=0;
    for(i=citationsSize-1; i>=0 && citations[i]>0 && citationsSize-i<=citations[i]; i--){
        cnt=citationsSize-i;
    }
    return cnt;
}

 

posted @ 2021-01-08 21:38  温暖了寂寞  阅读(47)  评论(0编辑  收藏  举报