;博客测试data segment tab db 'hello world$'data ends code segment assume cs:code, ds:data start: ...
分类:
其他好文 时间:
2014-11-25 18:17:24
阅读次数:
178
1.warning: #1-D: last line of file ends without a newline
为什么 C 语言源程序最后一行要是一个空行?否则的话编译器会报warning: #1-D: last line of file ends without a newline这种错误,虽然这个warning没啥影响,但既然要设计这么一个warning总得有点原因吧。...
分类:
其他好文 时间:
2014-11-20 12:10:46
阅读次数:
219
第一个程序可执行文件包含内容:主体+描述 (相当流行结构,很多格式都能这么介绍吧)因为包含2个部分,随便下个exe发现可以用压缩包打开,里面的文件大概就是主体和描述了吧伪指令xxx segmentxxx ends代码段标志:通过段寄存器可以发现,段分为指令,数据和栈,给我的感觉就是数据和方法的分离(...
分类:
其他好文 时间:
2014-11-08 11:54:11
阅读次数:
145
You probably knew whatswitchwas going to look like.A case body breaks automatically, unless it ends with afallthroughstatement.package main import ( ....
分类:
其他好文 时间:
2014-10-28 00:45:07
阅读次数:
112
DescriptionIn the two-player game "Two Ends", an even number of cards is laid out in a row. On each card, face up, is written a positive integer. Play...
分类:
其他好文 时间:
2014-10-25 18:32:56
阅读次数:
207
;实验报告内容,输入一个字符串,去掉数字,输出ASSUME DS:DATA,CS,CDOE,SS,STACKDATA SEGMENT MAXLEN DB 15 INPUTLEN DB 0 STR1 DB 15 DUP(0) STR2 DB 15 DUP(0)DATA ENDS...
分类:
其他好文 时间:
2014-10-20 13:17:13
阅读次数:
198
Find them, Catch them
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 32073
Accepted: 9890
Description
The police office in Tadu City decides to say ends to ...
分类:
其他好文 时间:
2014-10-14 16:04:58
阅读次数:
368
题目链接地址:http://soj.me/1176题目大意:两头取数。第一个人随机取,第二个人用贪婪算法(每次都取大的),求两人取数在第一个人赢的情况下的最大分差。使用贪婪算法时,如果左右两边相等,取左边的。核心算法:动态规划。 设数组arr[a][b]是在数列区间[a,b]上的最大分差。 递推公式...
分类:
其他好文 时间:
2014-10-09 14:57:33
阅读次数:
159
1 Local static variablesLocal static variables are not destroyed when the function ends; they are destroyed when the program terminates.2. Function pa...
分类:
其他好文 时间:
2014-10-04 23:58:17
阅读次数:
259
1176. Two EndsConstraintsTime Limit: 1 secs, Memory Limit: 64 MBDescriptionIn the two-player game "Two Ends", an even number of cards is laid out in a...
分类:
其他好文 时间:
2014-09-29 04:25:56
阅读次数:
194