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