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

LeetCode 274. H指数

时间:2018-08-18 17:46:20      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:vector   leetcode   sort   size   style   i++   end   index   ons   

bool cmp (int i,int j) { return (i>j);}
class Solution {
public:
    int hIndex(vector<int>& citations) {


        int count = 0;
        sort(citations.begin(),citations.end(),cmp);
        for(int i = 0; i < citations.size(); i++){
            if(citations[i]>count)
                count++;
            else
                break;
        }
        return count;
    }
};

 

LeetCode 274. H指数

标签:vector   leetcode   sort   size   style   i++   end   index   ons   

原文地址:https://www.cnblogs.com/lokianyu/p/9497612.html

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