包含8個文件:type.h, borrow.c, createfile.c, MainMenuControl.C, reader.c, readfile.c, search.c, writefile.c
標簽: MainMenuControl createfile writefile readfile
上傳時間: 2013-12-22
上傳用戶:xuanchangri
第1章-SD卡讀寫模塊 1. sdconfig.h: 該文件為SD卡讀寫模塊配置頭文件,用戶可根據實際硬件條件進行修改. 2. SD目錄 : SD卡讀寫模塊的全部文件,一般不用修改. 3. 建議sdconfig.h文件不要放于SD目錄中,因為SD目錄中的文件一般無須修改,sdconfig.h通常會有改動. 4. 例子見上一級目錄的SDExample目錄.
上傳時間: 2015-04-23
上傳用戶:lanwei
c編譯器中time.h的實現,對于要想了解c的標準庫,有必要看一看。
上傳時間: 2013-12-25
上傳用戶:stella2015
絕對正真的stdio.h的實現,從原始的io角度看待自己所編寫的c指令,對以后c的深入研究大有裨益。
上傳時間: 2015-04-24
上傳用戶:klin3139
prolog 找路例子程序: === === === === === === Part 1-Adding connections Part 2-Simple Path example | ?- path1(a,b,P,T). will produce the response: T = 15 P = [a,b] ? Part 3 - Non-repeating path As an example, the query: ?- path2(a,h,P,T). will succeed and may produce the bindings: P = [a,depot,b,d,e,f,h] T = 155 Part 4 - Generating a path below a cost threshold As an example, the query: ?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300). returns: RS = [a,b,depot,c,d,e,g,f,h] ? RS = [a,c,depot,b,d,e,g,f,h] ? no ==================================
標簽: Part connections example prolog
上傳時間: 2015-04-24
上傳用戶:ljt101007
H.264 RTP 打包格式中文譯稿,針對視頻應用/網絡電話/IPTV人士
上傳時間: 2014-11-05
上傳用戶:stella2015
In case you haven t realized it, building computer systems is hard. As the complexity of the system gets greater, the task of building the software gets exponentially harder. As in any profession, we can progress only by learning, both from our mistakes and from our successes. This book represents some of this learning written in a form that I hope will help you to learn these lessons quicker than I did, or to communicate to others more effectively than I did before I boiled these patterns down.
標簽: complexity the building computer
上傳時間: 2015-04-25
上傳用戶:tyler
分而治之方法還可以用于實現另一種完全不同的排序方法,這種排序法稱為快速排序(quick sort)。在這種方法中, n 個元素被分成三段(組):左段l e f t,右段r i g h t和中段m i d d l e。中段僅包含一個元素。左段中各元素都小于等于中段元素,右段中各元素都大于等于中段元素。因此l e f t和r i g h t中的元素可以獨立排序,并且不必對l e f t和r i g h t的排序結果進行合并。m i d d l e中的元素被稱為支點( p i v o t )。圖1 4 - 9中給出了快速排序的偽代碼
上傳時間: 2015-04-27
上傳用戶:kristycreasy
介紹ISO7816-4及中國金融集成電路(IC)卡規范所規定的T=0協議的CPU卡與終端之間的接口特性和傳輸協議,及以C51語言設計的CPU卡復位、下電及讀寫程序。
上傳時間: 2013-12-16
上傳用戶:xinzhch
可預置的8位計數器程序的主要部分分析 #include <AT89X51.H> //器件配置文件 #define uchar unsigned char //變量類型的宏定義 #define uint unsigned int uchar code SEG7[10]={0x03,0x9f,0x25,0x0d,0x99, //0~9的數碼管段碼 0x49,0x41,0x1f,0x01,0x09} uchar data cnt[8] //在data區定義8位長度的數組,用來存放計數值 uchar data pre_cnt[8] //在data區定義8位長度的數組,用來存放預置值 sbit drv=P3^4 //定義輸出驅動端 bit set_flag //定義工作標志 bit out_flag //定義輸出標志 bit keydown_flag //鍵按下標志
標簽: unsigned include define uchar
上傳時間: 2015-04-29
上傳用戶:changeboy