https://titanwolf.org/Network/Articles/Article?AID=6d260d47-8ba6-4fa6-ba2f-4dc4c2dd6800#gsc.tab=0 Calculation of RTO in tcp and related open source im ...
分类:
系统相关 时间:
2021-02-20 12:07:41
阅读次数:
0
题目描述&数据范围 你有一个长r,宽c的矩阵,矩阵上每个格子有权值,有m次询问,每次给出一个矩形左上角$x1,y1$和右下角$x2 ,y2$,以及一个值h,求:在该矩形覆盖的权值和是否大于h,最小需要几个权值就可以大于h。 【数据规模和约定】 对于10%的数据,满足R, C≤10; 对于20%的数据 ...
分类:
其他好文 时间:
2021-02-20 11:57:12
阅读次数:
0
A. Shifting Stacks time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You have n stacks of b ...
分类:
其他好文 时间:
2021-02-20 11:52:20
阅读次数:
0
线上故障主要包括cpu 磁盘 内存 网络等问题 依次排查 1.cpu 1) 先用ps找到进程pid 2) top -H -p pid 找到cpu占用高的线程 3)printf '%x\n' pid 获得16进制的nid 4) jstack pid |grep 'nid' -C5 -color 显示堆 ...
分类:
其他好文 时间:
2021-02-20 11:45:56
阅读次数:
0
package com.JUC; import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.concurrent.*; //共享资源 public class SynchronizedExample ...
分类:
编程语言 时间:
2021-02-20 11:44:41
阅读次数:
0
# 浮点数中的常见问题 ```javapublic class FloatAndDouble { public static void main(String[] args) { float num1 = 0.1F; double num2 = 1.0/10; System.out.println( ...
分类:
其他好文 时间:
2021-02-19 13:49:06
阅读次数:
0
https://blog.csdn.net/yhd0916/article/details/105092351/ 2. 编辑项目文件3. 搜索<LastGenOutput>resources1.Designer.cs</LastGenOutput>4.更改为<LastGenOutput>resour ...
分类:
其他好文 时间:
2021-02-19 13:40:12
阅读次数:
0
最近有很多知识需要恶补,主要是想靠一些证书,看了youtube上的一个分享,可以采取一下措施: https://www.youtube.com/watch?v=5cCoAz0H074 1. 灯光明亮,不要过暗或过亮 2. 保持通风 3. 不要坐在床上 4. 不要吃得太好太饱 5. 多喝水,冷水洗脸 ...
分类:
其他好文 时间:
2021-02-19 13:39:42
阅读次数:
0
java集合(list, set, map)常用方法 1. 集合:有一堆数据要存: [name='小赵' , age=18, sex='女'] [name='小钱' , age=19, sex='女'] [name='小孙' , age=20, sex='女'] [name='小李' , age=2 ...
分类:
编程语言 时间:
2021-02-19 13:34:39
阅读次数:
0
显示2016年2月份的日历print(calendar.month(2016,2)) 2016年为闰年In calendar.isleap(2016)OUt True 当前时间戳In time.time()OUt 145526477.661747 ...
分类:
其他好文 时间:
2021-02-19 13:32:28
阅读次数:
0