forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
h-index.cpp
46 lines (43 loc) · 976 Bytes
/
h-index.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Time: O(n)
// Space: O(n)
// Counting sort.
class Solution {
public:
int hIndex(vector<int>& citations) {
const auto n = citations.size();
vector<int> count(n + 1, 0);
for (const auto& x : citations) {
// Put all x >= n in the same bucket.
if (x >= n) {
++count[n];
} else {
++count[x];
}
}
int h = 0;
for (int i = n; i >= 0; --i) {
h += count[i];
if (h >= i) {
return i;
}
}
return h;
}
};
// Time: O(nlogn)
// Space: O(1)
class Solution2 {
public:
int hIndex(vector<int>& citations) {
sort(citations.begin(), citations.end(), greater<int>());
int h = 0;
for (const auto& x : citations) {
if (x >= h + 1) {
++h;
} else {
break;
}
}
return h;
}
};