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

[LeetCode] H-Index II

时间:2015-09-04 23:52:19      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

This problem is designed specifically to use binary search. In fact, in H-Index, someone has already used this idea (you may refer to this post :-))

The code is as follows.

 1 class Solution {
 2 public:
 3     int hIndex(vector<int>& citations) {
 4         int n = citations.size(), l = 0, r = n - 1;
 5         while (l <= r) {
 6             int m = l + (r - l) / 2;
 7             if (citations[m] >= n - m) r = m - 1;
 8             else l = m + 1;
 9         }
10         return n - r - 1;
11     }
12 };

 

[LeetCode] H-Index II

标签:

原文地址:http://www.cnblogs.com/jcliBlogger/p/4782471.html

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