『數(shù)據(jù)結(jié)構(gòu)-C++語言描述』圍繞多數(shù)據(jù)集類-表、樹、集合、圖和字典來組織數(shù)據(jù)結(jié)構(gòu)的學(xué)習(xí)。本書包括數(shù)據(jù)結(jié)構(gòu)基本內(nèi)容和面向?qū)ο蟪绦蛟O(shè)計(jì)方法兩部分,給出了許多完整程序或程序段例子,并引入了描述算法負(fù)責(zé)度的大O方法。
標(biāo)簽: 數(shù)據(jù)結(jié)構(gòu) 對(duì)象 分 語言
上傳時(shí)間: 2014-01-13
上傳用戶:cylnpy
嵌入式實(shí)時(shí)操作系統(tǒng)μC/OS-II(第2版)自帶光盤源碼 【原 書 名】 MicroC/OS-II The Real-Time Kernel,Second Edition 本書是MicroC/OSII The Real Time Kernel一書的第2版本,在第1版本(V2.0)基礎(chǔ)上做了重大改進(jìn)與升級(jí)。通過對(duì)μC/OSII源代碼的分析與描述,講述了多任務(wù)實(shí)時(shí)的基本概念、競(jìng)爭(zhēng)與調(diào)度算法、任務(wù)間同步與通信、存儲(chǔ)與定時(shí)的管理以及如何處理優(yōu)先級(jí)反轉(zhuǎn)問題;介紹如何將μC/OSII移植到不同CPU上,如何調(diào)試移植代碼。在所附光盤中,給出已通過FAA安全認(rèn)證的μC/OSII V2.52的全部源碼以及可在PC機(jī)上運(yùn)行的移植范例。
標(biāo)簽: MicroC OS-II Real-Time Edition
上傳時(shí)間: 2016-02-10
上傳用戶:thesk123
分治法解決最近對(duì)問題 畫一條垂直線x=c,把這些給定點(diǎn)分為兩個(gè)包含n/2個(gè)點(diǎn)的子集S1和S2,使得n/2個(gè)點(diǎn)位于直線的左側(cè)或直線上,另外n/2個(gè)點(diǎn)位于直線的右側(cè)或直線上;遵循分治法的思想,遞歸地求出左子集S1和右子集S2中的最近對(duì),分別為d1與d2;之后d=min{d1,d2}。合并過程:在以垂線x=c為對(duì)稱軸,2d為寬度的區(qū)域內(nèi)求最近兩個(gè)點(diǎn)的距離,記為d3;求D=min{d,d3};
上傳時(shí)間: 2013-12-26
上傳用戶:源碼3
本書全面介紹了UNIX系統(tǒng)的程序設(shè)計(jì)界面—系統(tǒng)調(diào)用界面和標(biāo)準(zhǔn)C庫(kù)提供的許多函數(shù)。 本書的前15章著重于理論知識(shí)的闡述,主要內(nèi)容包括UNIX文件和目錄、進(jìn)程環(huán)境、進(jìn)程控制、進(jìn)程間通信以及各種I/O。在此基礎(chǔ)上,分別按章介紹了多個(gè)應(yīng)用實(shí)例,包括如何創(chuàng)建數(shù)據(jù)庫(kù)函數(shù)庫(kù),PostScript 打印機(jī)驅(qū)動(dòng)程序,調(diào)制解調(diào)器撥號(hào)器及在偽終端上運(yùn)行其他程序的程序等。 本書內(nèi)容豐富權(quán)威,概念清晰精辟,一直以來被譽(yù)為UNIX編程的“圣經(jīng)”,對(duì)于所有UNIX程序員—無論是初學(xué)者還是專家級(jí)人士—都是一本無價(jià)的參考書籍。
標(biāo)簽: UNIX 程序設(shè)計(jì) 標(biāo)準(zhǔn)
上傳時(shí)間: 2014-11-23
上傳用戶:zycidjl
數(shù)據(jù)結(jié)構(gòu)(嚴(yán)慰敏)配套純c代碼實(shí)驗(yàn)十 typedef int InfoType // 定義其它數(shù)據(jù)項(xiàng)的類型 typedef int KeyType // 定義RedType類型的關(guān)鍵字為整型 struct RedType // 記錄類型(同c10-1.h) { KeyType key // 關(guān)鍵字項(xiàng) InfoType otherinfo // 其它數(shù)據(jù)項(xiàng) } typedef char KeysType // 定義關(guān)鍵字類型為字符型 #include"c1.h" #include"c10-3.h" void InitList(SLList &L,RedType D[],int n) { // 初始化靜態(tài)鏈表L(把數(shù)組D中的數(shù)據(jù)存于L中) char c[MAX_NUM_OF_KEY],c1[MAX_NUM_OF_KEY] int i,j,max=D[0].key //
標(biāo)簽: typedef int InfoType KeyType
上傳時(shí)間: 2016-03-03
上傳用戶:2404
第一部分 VISUAL C++實(shí)驗(yàn)環(huán)境介紹 ..........................................3 一、Visual C++簡(jiǎn)介 3 二、項(xiàng)目開發(fā)過程 4 三、集成開發(fā)環(huán)境Developer Studio 4 四、常用功能鍵及其意義 7 第二部分 實(shí)驗(yàn) 8 實(shí)驗(yàn)一 熟悉實(shí)驗(yàn)環(huán)境 8 實(shí)驗(yàn)二 簡(jiǎn)單程序開發(fā) 15 實(shí)驗(yàn)三 函數(shù)與程序結(jié)構(gòu) 18 實(shí)驗(yàn)四 結(jié)構(gòu)和類 21錯(cuò)誤!未定義書簽。 實(shí)驗(yàn)五 繼承與虛函數(shù) 28 實(shí)驗(yàn)六 重載與文件I/O 33 實(shí)驗(yàn)七 面向?qū)ο蟪绦蛟O(shè)計(jì)(1) 35 實(shí)驗(yàn)八 面向?qū)ο蟪绦蛟O(shè)計(jì)(2) 47
標(biāo)簽: VISUAL Visual 分 實(shí)驗(yàn)
上傳時(shí)間: 2016-03-16
上傳用戶:songyue1991
The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video.
標(biāo)簽: bottleneck developed the concept
上傳時(shí)間: 2014-12-03
上傳用戶:ikemada
The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video. Hardware reference
標(biāo)簽: bottleneck developed the concept
上傳時(shí)間: 2016-03-18
上傳用戶:極客
The PCI Local bus concept was developed to break the PC data I/O bottleneck and clearly opens the door to increasing system speed and expansion capabilities. The PCI Local bus moves high speed peripherals from the I/O bus and places them closer to the system’s processor bus, providing faster data transfers between the processor and peripherals. The PCI Local bus also addresses the industry’s need for a bus standard which is not directly dependent on the speed, size and type of system processor. It represents the first microprocessor independent bus offering performance more than adequate for the most demanding applications such as full-motion video. User Manual
標(biāo)簽: bottleneck developed the concept
上傳時(shí)間: 2014-01-15
上傳用戶:努力努力再努力
modem編程 本地機(jī)使用ATDT命令撥號(hào),遠(yuǎn)程機(jī)設(shè)為自動(dòng)響應(yīng)方式,即可進(jìn)入聯(lián)機(jī)方式, 進(jìn)行終端通信。 在聯(lián)機(jī)方式下,按PageUp鍵上載文件,按PageDn鍵下載文件,Ctrl-O呼出主菜單,退出聯(lián)機(jī)方式使用Ctrl-D鍵。退出終端仿真器使用EXIT命令。 主程序使用C語言編寫。使用早期的C編譯器可以進(jìn)行編譯。終端方式為VT100.
上傳時(shí)間: 2014-01-22
上傳用戶:xz85592677
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1