摘要: 查找数据左端点: l=0, r=n-1; // left while (l<r) { int mid = (l+r)>>1; if (a[mid]>=k) r=mid; else l=mid+1; } 查找数据右端点: l = 0, r=n-1; // right while (l<r) { int 阅读全文
posted @ 2022-04-18 14:36 Akiho 阅读(20) 评论(0) 推荐(0)
摘要: docker一键部署cloudreve docker run -d \ --name=cloudreve \ -p 5212:5212 \ --mount type=bind,source=<path_to_your_config>,target=/cloudreve/conf.ini \ --mo 阅读全文
posted @ 2022-04-18 11:03 Akiho 阅读(193) 评论(0) 推荐(0)