算法
未读
二分算法(二分答案/最小化最大值/最大化最小值/第K小)By 灵茶山艾府
二分答案 275. H 指数 II int hIndex(vector<int>& q) {
int n=q.size();
int l=1,r=n;
while(l<=r){
int mid=(l+r)/2;