LeetCode 275. H-Index II
Posted Shendu.cc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 275. H-Index II相关的知识,希望对你有一定的参考价值。
现在变了,数列是拍好序的,题目要求对数效率,因为x只可能有一个那就二分咯
class Solution {
public:
int hIndex(vector<int>& citations) {
if(citations.size()==0)
return 0;
int len = citations.size();
int l=0;
int r = len-1;
while(l<=r)
{
int mid = (l+r)/2;
if(citations[mid]>len-mid)
{
r = mid-1;
}
else if(citations[mid]<len-mid)
{
l = mid+1;
}
else
{
return len-mid;
}
}
if(l<len&&citations[l]>len-l)
return len-l;
else
return 0;
}
};
以上是关于LeetCode 275. H-Index II的主要内容,如果未能解决你的问题,请参考以下文章