首页 > 其他 > 详细

[LeetCode] H-Index II

时间:2015-09-04 23:50:21      阅读:203      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!