A Virtual hard disk is saved either with VHD or VHDX file extension. VHD is the older while VHDX is the newer file extension used by Microsoft Virtual ...
分类:
其他好文 时间:
2020-04-29 12:59:09
阅读次数:
81
1、服务器代码合并本地代码 $ git stash //暂存当前正在进行的工作。 $ git pull origin master //拉取服务器的代码 $ git stash pop //合并暂存的代码 2.服务器代码覆盖本地代码 $git reset --hard //回滚到上一个版本 $git ...
分类:
其他好文 时间:
2020-04-29 10:38:35
阅读次数:
378
题目英文版: The only difference between the easy and the hard versions is the maximum value of k. You are given an infinite sequence of form "1121231234123 ...
分类:
其他好文 时间:
2020-04-28 12:33:44
阅读次数:
91
1. 打开 AHCI 功能 2. 开启 TRIM 功能 判断TRIM是否开启:命令行中输入 如果显示结果为0,则为开启状态,如果为1,则是未开启 如果TRIM未开启,开启TRIM需命令行中输入 如需关闭TRIM,命令行中输入 3. 根据你的电脑情况是否设置写入缓存 运行 diskmgmt.msc 磁 ...
分类:
其他好文 时间:
2020-04-28 09:45:34
阅读次数:
63
题目描述 The only difference between the easy and the hard versions is the maximum value of k. You are given an infinite sequence of form "112123123412345 ...
分类:
其他好文 时间:
2020-04-27 22:17:24
阅读次数:
94
"题目链接" 题目大意 给一个长度为$n$的字符串,要求将它染色然后按字典序交换排序(可以理解为冒泡),只有颜色不同的字符之间才能互相交换,问最少能用多少种颜色并且输出染色方案。 分析 只需要染一种颜色的情况 显然,像是abcdefghijklmn...这种根本不需要相互交换,所以只需要一种颜色。 ...
分类:
其他好文 时间:
2020-04-27 13:13:34
阅读次数:
52
软解析(soft prase)和硬解析(hard prase)以及 Soft Soft Parse 每个sql会产生两个share cursor 父游标(parent cursor)和子游标(child cursor) ,缓存在库缓存区的对象都是以一种叫库缓存对象句柄(library cache o ...
分类:
数据库 时间:
2020-04-26 17:15:09
阅读次数:
80
https://pan.baidu.com/s/17BLlYhdwYwuSpTc49WhBRQ 提取码:mezp . cronis disk director 11是一套强大的工具,共同工作,以优化磁盘使用,并保护您的数据。acronis disk director 11创建和管理磁盘分区,以便在一 ...
分类:
其他好文 时间:
2020-04-25 12:39:53
阅读次数:
80
Cgroup限制用户的CPU、内存和磁盘IO使用率 由 jues 提交于 2019/07/04 - 10:25 周四 标签 软件平台 Cgroup Linux 内容 昨天使用Linux系统,不小心操作导致系统内存用完,直接卡死,等了许久也没恢复过来,只能强制重启。 一个普通用户也能直接导致死机,实在 ...
分类:
其他好文 时间:
2020-04-22 20:03:02
阅读次数:
94
一道比较好的组合题 Description 给定 $n$ 个点对,求: $$\sum^n_{i=1}\sum^n_{j=i+1}\binom {x_i+x_j+y_i+y_j}{x_i+x_j}$$ $n\le 2\times10^5 \ \ \ x_i,y_i \le 2000$ Solution ...
分类:
其他好文 时间:
2020-04-22 09:54:01
阅读次数:
52