This book is an in-depth exploration into eVB s inherent features, and how to use them to solve likely mobile application programming tasks. After reading the book the reader will be able to write applications tackling a wide array of business problems for Windows CE-powered devices, both customized and for PocketPC and Handheld PC products. This book will help ease the transition into the language, and provide a reference for even more experienced developers.
标签: exploration in-depth features inherent
上传时间: 2013-12-12
上传用户:aa54
I use C to implement thread operating,include initiallize,fork,yield,exit,kill. You should have driver to use this library. I choose array for ready queue,and strcut for Thread Control Block.
标签: initiallize implement operating include
上传时间: 2016-01-26
上传用户:xc216
Using Gaussian elimination to solve linear equations. // In this version, we allow matrix of any size. This is done by treating // the name of a 2-dimensional array as pointer to the beginning of the // array. This makes use of the fact that arrays in C are stored in // row-major order.
标签: elimination equations Gaussian version
上传时间: 2016-02-14
上传用户:hxy200501
this package contains two .c files.One file implements the merge of two int arrays.The other one implements the merge of two linkage array.
标签:
上传时间: 2016-02-26
上传用户:曹云鹏
The LZW compression class i mplemented as a fixed length code which you can specify, the huffman algorithm implementation encodes a byte into a variable length bit array. Both of them can work with streams
标签: compression mplemented huffman specify
上传时间: 2013-12-03
上传用户:yzhl1988
kmeans算法实现 a simple k-means clustering routine. returns the cluster labels of the data points in an array.
标签: clustering the k-means cluster
上传时间: 2013-12-28
上传用户:一诺88
I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,since PB does not * // support "Address of Function" , so we can not set new * // WndProc, just makes the object more easy to use. * // 2.Uses structure array instead of Datastore * // 3.Calc width of menuitem at runtime(MEASUREITEM) * // 4.Draw disabled status
标签: Encapsulates userobjet changed object
上传时间: 2014-01-14
上传用户:lx9076
linux下用C语言写的聊天程序!/*BUG and NOTE: Not join protect to Shared Memory Segments,example Semaphore arrays. Not check the parameters validity. When transmit may be error. If the client program no right exit,others cannot know,the service program shouldbe check the client program whether exist timing. The program when exit(), it do not delete the Shared Memory Segments,you maybe use atexit() but the program have some processes. When one process is exit(),others is continue. The service program s action is few. And so on. */
标签: Semaphore Segments example protect
上传时间: 2014-01-25
上传用户:xhz1993
AS2Debug是为了弥补flash自带的trace的不足而制作的,增加了一下几个主要功能 1.对object和array做了解析,能输出包含的具体数据和类型 2.对movieclip做了处理,使用digMc方法,可以方便的输出包含的所有子影片的详细信息 3.增加了信息分类和染色(分为trace,info,error,waring四种)
上传时间: 2014-12-03
上传用户:cc1015285075
动态规划的方程大家都知道,就是 f[i,j]=min{f[i-1,j-1],f[i-1,j],f[i,j-1],f[i,j+1]}+a[i,j] 但是很多人会怀疑这道题的后效性而放弃动规做法。 本来我还想做Dijkstra,后来变了没二十行pascal就告诉我数组越界了……(dist:array[1..1000*1001 div 2]...) 无奈之余看了xj_kidb1的题解,刚开始还觉得有问题,后来豁然开朗…… 反复动规。上山容易下山难,我们可以从上往下走,最后输出f[n][1]。 xj_kidb1的一个技巧很重要,每次令f[i][0]=f[i][i],f[i][i+1]=f[i][1](xj_kidb1的题解还写错了)
上传时间: 2014-07-16
上传用户:libinxny