CODE OF NSGA,I hope that it will help you,thank you~
上传时间: 2017-01-02
上传用户:wpt
I want to provide an example file system driver for Windows NT/2000/XP. For some time I have worked on an implementation of RomFs. RomFs is a small filesystem originally implemented in Linux, because of its simple disk layout its a good choice for an example driver. The current status is a working read-only driver that supports caching of file data, the create functionallity still needs some work but I m releasing it due to the high public demand.
标签: provide Windows example driver
上传时间: 2013-12-19
上传用户:zsjzc
if you want to it you can download and i m a student,this is a paper,I m wish it can help you.
上传时间: 2014-01-16
上传用户:气温达上千万的
微软公司内部所有工程师的必读之书 I. M. Wright s Hard Code
上传时间: 2013-12-23
上传用户:彭玖华
数值分析的2个c语言程序 1)I显示方法(2)艾特肯
上传时间: 2017-01-14
上传用户:风之骄子
Java I/O操作,字节流InputStream和OutputStream,字符流Reader和Writer,Java I/O库的设计原则,字符集的编码,RandomAccessFile类,管道流,对象的序列化。
上传时间: 2014-01-16
上传用户:Shaikh
WSAASYNCSELECT I / O模型 的程序设计 包括源码及原理等
标签: WSAASYNCSELECT 模型 程序设计 源码
上传时间: 2013-12-24
上传用户:wang0123456789
设计了巴特沃斯、车比雪夫I,Ⅱ型、椭圆滤波器,并有对心电信号的低通处理。
标签: 巴特沃斯
上传时间: 2014-01-06
上传用户:yzy6007
void Knight(int i , int j) { // printf("%d %dn",i,j) if (board[i][j] != 0 || i < 0 || i >= Size || j < 0 || j >= Size ) { return } step++ board[i][j]=step if (step == Size*Size) { showboard() system("PAUSE") return } //DFS Knight(i-2,j-1) //left Knight(i-2,j+1) Knight(i+2,j-1) //right Knight(i+2,j+1) Knight(i-1,j-2) //up Knight(i+1,j-2) Knight(i+1,j+2) //down Knight(i-1,j+2) // board[i][j]=0 step-- }
上传时间: 2014-01-17
上传用户:cxl274287265
int getDivisor(int iNum) { int i = 1 int sum = 0 if (0 == iNum) { return 1 } while (i <= iNum / 2) { if (0 == iNum % i) { sum++ } i++ } return (sum+1) }
标签: int iNum getDivisor return
上传时间: 2013-12-17
上传用户:frank1234