171. Excel表列序号
进制转换
274. H 指数
275. H 指数 II
这题,官方的二分写的太麻烦了,贴个自己的
public int hIndex(int[] citations) {
int n = citations.length;
int pivot, left = 0, right = n - 1;
int res =0;
while (left <= right) {
pivot = left + (right - left) / 2;
if (citations[pivot] >= n - pivot){
res = n-pivot;
right = pivot - 1;
}
else{
left = pivot + 1;
}
}
return res;
}