http://blog.csdn.net/ly21st http://ly21st.blog.chinaunix.net
发布时间:2011-12-30 13:14:15
汇编程序版本1;我们的启动程序实现的功能是在屏幕中央;打印一行字符串即可org 07c00h ;指令明确告诉编译器我程序的段地址是7c00h ;而不是原来的 00000 .........【阅读全文】
发布时间:2011-12-20 21:39:13
文件share_proc.c #include <stdio.h>#include <stdlib.h>#include <sys/types.h>#include <sys/shm.h>#include <string.h>#include <unistd.h>#include <sys/wait.h> struct A{ int x; &nb.........【阅读全文】
发布时间:2011-12-18 20:40:53
遇到的问题是,我把E-mail地址收集在txt文件中(每行一个E-mail地址,共78000行),要求是把其中重复的E-mail地址全部去掉。考虑编程方便,我用了CString类,但似乎效率不高。我写出来的整理78000份E-mail地址的需要近7分钟的时间 我给他用Python实现了一个(这个版本是修改过的,当时我随手实现的一个版本做错了,呵.........【阅读全文】