指令 mov ds:[dx],dx 原因:上述指令使用寄存器相对寻址方式,只能使用BX,BP,SI,DI 方括号里必须是变址(index,指SI, DI)或基址(base,指BX, BP)寄存器 正确写法: mov ds:[bx],bx ...
分类:
其他好文 时间:
2019-11-23 22:05:09
阅读次数:
102
C. Swap Letters time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Monocarp has got two str ...
分类:
其他好文 时间:
2019-11-23 21:53:27
阅读次数:
142
let musicDom = document.getElementsByTagName('audio')[0]; // 获取AudioDom节点 musicDom.load();//因为source标签不能直接更改路径,所以整个audio标签必须重新加载一次 musicDom.oncanplay ...
分类:
其他好文 时间:
2019-11-23 09:16:23
阅读次数:
368
阅读目录进程管理控制LinuxWindows参考资料 回到顶部进程管理控制 这里实现的是一个自定义timer用于统计子进程运行的时间。使用方式主要是 timer [ t seconds] command arguments 例如要统计ls的运行时间可以直接输入timer ls,其后的argument ...
GAN由论文《Ian Goodfellow et al., “Generative Adversarial Networks,” arXiv (2014)》提出。 GAN与VAEs的区别 GANs require differentiation through the visible units, ...
分类:
其他好文 时间:
2019-11-21 21:21:25
阅读次数:
117
这位老哥的写的关于 function inspector 功能英文演示过程: 在线网址:https://lokar.fmf.uni lj.si/www/GeoGebra4/Graphics/function_inspector/function_inspector.htm ...
分类:
其他好文 时间:
2019-11-20 21:33:14
阅读次数:
352
1 磁盘的内部结构知识 1.1 磁盘相关的术语 英文 说明 Disk 磁盘 Head 磁头 Sector 扇区(一个扇区是512字节) Track 磁道 Cylinder 柱面 Units 单元块(也是一个柱面的大小) Block 数据块 Inode 索引节点 1.2 磁盘的内部结构图 机械硬盘内部 ...
分类:
其他好文 时间:
2019-11-19 15:47:22
阅读次数:
108
Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), find the minimum number of conference room ...
分类:
其他好文 时间:
2019-11-18 10:06:15
阅读次数:
68
Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), determine if a person could attend all mee ...
分类:
其他好文 时间:
2019-11-18 09:52:38
阅读次数:
74
TimeUnit是java.util.concurrent包下面的一个类,表示给定单元粒度的时间段 主要作用 时间颗粒度转换 延时 常用的颗粒度 TimeUnit.DAYS //天 TimeUnit.HOURS //小时 TimeUnit.MINUTES //分钟 TimeUnit.SECONDS ...
分类:
其他好文 时间:
2019-11-16 19:53:22
阅读次数:
66