This book is an in-depth exploration into eVB s inherent features, and how to use them to solve like
This book is an in-depth exploration into eVB s inherent features, and how to use them to solve like...
This book is an in-depth exploration into eVB s inherent features, and how to use them to solve like...
I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driv...
Using Gaussian elimination to solve linear equations. // In this version, we allow matrix of any si...
this package contains two .c files.One file implements the merge of two int arrays.The other one imp...
The LZW compression class i mplemented as a fixed length code which you can specify, the huffman alg...
kmeans算法实现 a simple k-means clustering routine. returns the cluster labels of the data points in a...
I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,s...
linux下用C语言写的聊天程序!/*BUG and NOTE: Not join protect to Shared Memory Segments,example Semaphore Array...
AS2Debug是为了弥补flash自带的trace的不足而制作的,增加了一下几个主要功能 1.对object和Array做了解析,能输出包含的具体数据和类型 2.对movieclip做了处理,使...
动态规划的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人会怀疑这道题的后效性而放弃动规做法。 ...