码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 275. H-Index II

时间:2020-05-09 17:08:50      阅读:39      评论:0      收藏:0      [点我收藏+]

标签:题目   ref   ==   public   int   leetcode   二分   problem   problems   

题目

现在变了,数列是拍好序的,题目要求对数效率,因为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

标签:题目   ref   ==   public   int   leetcode   二分   problem   problems   

原文地址:https://www.cnblogs.com/dacc123/p/12858500.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!