摘要: https://leetcode.com/problems/h-index-ii/ 1 class Solution { 2 public: 3 int hIndex(vector& citations) { 4 int size=citations.size(); 5 ... 阅读全文
posted @ 2015-12-06 22:25 阿怪123 阅读(178) 评论(0) 推荐(0)
摘要: https://leetcode.com/problems/h-index/class Solution {public: int hIndex(vector& citations) { int size=citations.size(); int index=si... 阅读全文
posted @ 2015-12-06 16:24 阿怪123 阅读(140) 评论(0) 推荐(0)