Leetcode P0275”H-Index II” 题解

1 · Qiaoyi Yin · July 26, 2021, 4 p.m.
博文中会简要介绍Leetcode P0275题目分析及解题思路。 “H-Index II”是一道中等难度的题目,同时也是p0274的衍生题。这道题其实就是p0274排完序之后利用二分搜索寻找临界点的过程。具体思路不再赘述。 Given an array of integers citations where citations[i] is the number of citations a researcher received for their ith paper and citations is sorted in an ascending order, return compute the researcher’s h-index. According to the definition of h-index on Wikipedia: A scientist has an index h if h of their n papers have at least h citations each, and the other n − h papers have no more...