常用的算法二分模板
1. 在数组a[]中找大于等于x的第一个数的下标
//int ans lower_bound(a, a n, x) - a
//相当于下方
int l 0, r n - 1;
while(l < r) {int mid l r >> 1;if(a[mid] > x) r mid;else l mid 1;
}
cout << r;2. 在数组a[]中找大于…
概述
上周发生了一个Mysql报错的问题,今天有时间整理一下产生的原因和来龙去脉,Mysql的版本是5.5,发生错误的表存储引擎都是MyISAM,产生的报错信息是Table xxxxxx is marked as crashed and should be repaired。
定位问题
产生的后果是Nginx服务没有…
先看代码
class DFL(nn.Module):"""Integral module of Distribution Focal Loss (DFL).Proposed in Generalized Focal Loss https://ieeexplore.ieee.org/document/9792391"""def __init__(self, c116):"""Initialize a convo…