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

LeetCode 274. H-Index

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

标签:size   tco   tor   class   pre   index   href   ons   problems   

题目

题目的意思很简单啦,就是问你一个数组,有x个数字,都大于等于x,问这个x是多少,
这个x肯定是一定的。

排个序就好了

class Solution {
public:
    int hIndex(vector<int>& citations) {
        
        if(citations.size()==0)
            return 0;
        sort(citations.begin(),citations.end());
        
        int ans=citations.size();
        
        for(int i=0;i<citations.size();i++)
        {
            if(citations[i]>=ans)
                return ans;
            else
                ans--;
        }
        
        return ans;
    }
};

LeetCode 274. H-Index

标签:size   tco   tor   class   pre   index   href   ons   problems   

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

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