算法:
url:https://leetcode.com/problems/h-index-ii/
题目
1 | Given an array of citations sorted in ascending order (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index. |
思路分析
[0,1,3,5,6]
数组长度 n,存在一个元素 h, 使得 n 中有 h个元素 大于等于h, 其他 (n-h)个元素 < h;
求h?
数组是有序的 递增数组
遍历 arr,存在 arr[i], 使得 n-i == arr[i]
Java解法
1 | class Solution { |
1 | public int hIndex(int[] citations) { |