File tree 3 files changed +67
-0
lines changed
solution/0200-0299/0274.H-Index
3 files changed +67
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,30 @@ class Solution {
85
85
}
86
86
```
87
87
88
+ ### ** TypeScript**
89
+
90
+ ``` ts
91
+ function hIndex(citations : number []): number {
92
+ let n = citations .length ;
93
+ let cnt = new Array (n + 1 ).fill (0 );
94
+ for (let c of citations ) {
95
+ if ( c <= n ) {
96
+ ++ cnt [c ];
97
+ } else {
98
+ ++ cnt [n ];
99
+ }
100
+ }
101
+ let sum = 0 ;
102
+ for (let i = n ; i > - 1 ; -- i ) {
103
+ sum += cnt [i ];
104
+ if (sum >= i ) {
105
+ return i ;
106
+ }
107
+ }
108
+ return 0 ;
109
+ };
110
+ ```
111
+
88
112
### ** Go**
89
113
90
114
利用二分查找,定位符合条件的最大值
Original file line number Diff line number Diff line change @@ -89,6 +89,30 @@ class Solution {
89
89
}
90
90
```
91
91
92
+ ### ** TypeScript**
93
+
94
+ ``` ts
95
+ function hIndex(citations : number []): number {
96
+ let n = citations .length ;
97
+ let cnt = new Array (n + 1 ).fill (0 );
98
+ for (let c of citations ) {
99
+ if ( c <= n ) {
100
+ ++ cnt [c ];
101
+ } else {
102
+ ++ cnt [n ];
103
+ }
104
+ }
105
+ let sum = 0 ;
106
+ for (let i = n ; i > - 1 ; -- i ) {
107
+ sum += cnt [i ];
108
+ if (sum >= i ) {
109
+ return i ;
110
+ }
111
+ }
112
+ return 0 ;
113
+ };
114
+ ```
115
+
92
116
### ** Go**
93
117
94
118
Use binary search to locate the maximum value that meets the conditions
Original file line number Diff line number Diff line change
1
+ function hIndex ( citations : number [ ] ) : number {
2
+ let n = citations . length ;
3
+ let cnt = new Array ( n + 1 ) . fill ( 0 ) ;
4
+ for ( let c of citations ) {
5
+ if ( c <= n ) {
6
+ ++ cnt [ c ] ;
7
+ } else {
8
+ ++ cnt [ n ] ;
9
+ }
10
+ }
11
+ let sum = 0 ;
12
+ for ( let i = n ; i > - 1 ; -- i ) {
13
+ sum += cnt [ i ] ;
14
+ if ( sum >= i ) {
15
+ return i ;
16
+ }
17
+ }
18
+ return 0 ;
19
+ } ;
You can’t perform that action at this time.
0 commit comments