被《程序員》等機(jī)構(gòu)評(píng)選為2006年最受讀者喜愛的十大IT圖書之一。 本書是久負(fù)盛名的C++經(jīng)典教程,其內(nèi)容是C++大師Stanley B. Lippman豐富的實(shí)踐經(jīng)驗(yàn)和C++標(biāo)準(zhǔn)委員會(huì)原負(fù)責(zé)人Josée Lajoie對(duì)C++標(biāo)準(zhǔn)深入理解的完美結(jié)合,已經(jīng)幫助全球無(wú)數(shù)程序員學(xué)會(huì)了C++。本版對(duì)前一版進(jìn)行了徹底的修訂,內(nèi)容經(jīng)過(guò)了重新組織,更加入了C++ 先驅(qū)Barbara E.Moo在C++教學(xué)方面的真知灼見。既顯著改善了可讀性,又充分體現(xiàn)了C++語(yǔ)言的最新進(jìn)展和當(dāng)前的業(yè)界最佳實(shí)踐。書中不但新增大量教學(xué)輔助內(nèi)容,用于強(qiáng)調(diào)重要的知識(shí)點(diǎn),提醒常見的錯(cuò)誤,推薦優(yōu)秀的編程實(shí)踐,給出使用提示,還包含大量來(lái)自實(shí)戰(zhàn)的示例和習(xí)題。
標(biāo)簽: 2006 程序員 機(jī)構(gòu) 圖書
上傳時(shí)間: 2014-01-13
上傳用戶:Zxcvbnm
基于UDP實(shí)現(xiàn)E-Mail傳輸 工作過(guò)程描述: 客戶端描述: 1. Client(以下簡(jiǎn)稱C端)端將郵件以規(guī)定的大小封裝為符合要求的UDP包。 2. 將封裝好的UDP包發(fā)出,并等待Server(以下簡(jiǎn)稱S端)端收到相應(yīng)的UDP包后返回的回應(yīng)Acknowledge(以下簡(jiǎn)稱為ACK)。若收到的為Positive ACK,則繼續(xù)發(fā)包;若收到的為Negtive ACK,則將應(yīng)發(fā)的包重發(fā)。 3. 直到C端將所有要發(fā)的包都發(fā)完,并都已經(jīng)收到S端的回應(yīng),最后發(fā)一個(gè)End包,直接關(guān)閉此進(jìn)程。 服務(wù)器端描述: 1. S端啟動(dòng)服務(wù)進(jìn)程,并監(jiān)聽相應(yīng)端口。 2. 若收到C端發(fā)出的有關(guān)請(qǐng)求,按如下情況給出相應(yīng)的反映: a. 將收到的包進(jìn)行檢測(cè),若收到的包有錯(cuò)則拋棄(discard),并發(fā)給C端一個(gè)negtive ACK。 b. 將收到的包進(jìn)行檢測(cè),若收到的包正常,則將此包進(jìn)行解包,將內(nèi)容輸出至一臨時(shí)文件;并發(fā)給C端一個(gè)positive ACK。 3.依次收到來(lái)自C斷的包,直到收到end為止,并關(guān)閉此進(jìn)程,轉(zhuǎn)回監(jiān)聽狀態(tài)。
標(biāo)簽: UDP E-Mail Client 封裝
上傳時(shí)間: 2014-12-08
上傳用戶:sxdtlqqjl
簡(jiǎn)易數(shù)字頻率計(jì)題解.( 1997年 B 題 ) 編寫與講解人:田良(東南大學(xué)無(wú)線電系,2003年3月12日) 一)任務(wù) 設(shè)計(jì)并制作一臺(tái)數(shù)字顯示的簡(jiǎn)易頻率計(jì)。 (二)要求 1.基本要求 (1)頻率測(cè)量 a.測(cè)量范圍 信號(hào):方波、正弦波 幅度:0.5V~5V[注] 頻率:1Hz~1MHz b.測(cè)試誤差≤0.1% (2)周期測(cè)量 a.測(cè)量范圍 信號(hào):方波、正弦波 幅度:0.5V~5V[注] 頻率:1Hz~1MHz b.測(cè)試誤差≤0.1% 3) 脈沖寬度測(cè)量 a.測(cè)量范圍 信號(hào):脈沖波 幅度:0.5V~5V[注] 脈沖寬度≥100μs b.測(cè)試誤差≤0.1% (4)顯示器 十進(jìn)制數(shù)字顯示,顯示刷新時(shí)間1~10秒 連續(xù)可調(diào),對(duì)上述三種測(cè)量功能分別采用不同顏色的 發(fā)光二極管指示。 (5)具有自校功能,時(shí)標(biāo)信號(hào)頻率為1MHz。 (6)自行設(shè)計(jì)并制作滿足本設(shè)計(jì)任務(wù)要求的穩(wěn)壓電源
標(biāo)簽: 1997 2003 數(shù)字頻率計(jì) 東南大學(xué)
上傳時(shí)間: 2013-12-26
上傳用戶:xg262122
%調(diào)用格式 =trapez_g( f_name ,a,b,n) %f_name: 被積函數(shù)的文件名f(x) % a:x的上限 % b:x的下限 % 部分區(qū)間數(shù) %實(shí)例:trapez_g( sin ,0,pi,20)
標(biāo)簽: trapez_g f_name 函數(shù) 上限
上傳時(shí)間: 2013-12-19
上傳用戶:cjl42111
DESCRIPTION : BIN to seven segments converter -- segment encoding -- a -- +---+ -- f | | b -- +---+ <- g -- e | | c -- +---+ -- d -- Enable (EN) active : high -- Outputs (data_out) active : low
標(biāo)簽: DESCRIPTION converter segments encoding
上傳時(shí)間: 2016-08-17
上傳用戶:ainimao
采用3D Bresenham算法在兩點(diǎn)間劃一直線 % This program is ported to MATLAB from: % B.Pendleton. line3d - 3D Bresenham s (a 3D line drawing algorithm) % ftp://ftp.isc.org/pub/usenet/comp.sources.unix/volume26/line3d, 1992 % % Which is referenced by: % Fischer, J., A. del Rio (2004). A Fast Method for Applying Rigid % Transformations to Volume Data, WSCG2004 Conference. % http://wscg.zcu.cz/wscg2004/Papers_2004_Short/M19.pdf
標(biāo)簽: Bresenham Pendleton program MATLAB
上傳時(shí)間: 2013-12-10
上傳用戶:sz_hjbf
This a simple database management system. It doesn t use any other code (i.e. ODBC, ADO, etc.) and has it s own database file format. I wrote it because I found the other DBMSs code too bulky and hard to debug. It s designed for small applications and I doubt it could handle anything on a large scale. A sample program included in the .zip shows how everything works. The database project is a library project, so you ll have to compile and link with the .lib file to get everything working. Pros: - You have the source code so you know exactly what it is doing - Database files are very small - Small and fast code Cons: - Can t handle large amounts of records (more than 65000ish) - Doesn t support SQL (you have to search the database by cycling through the records and testing them against your constraints) - Each database file can only have one table.
標(biāo)簽: i.e. management database simple
上傳時(shí)間: 2016-10-02
上傳用戶:851197153
開源的e-learning系統(tǒng)。Java環(huán)境,B/S結(jié)構(gòu)。
標(biāo)簽: e-learning Java 開源
上傳時(shí)間: 2013-12-25
上傳用戶:xfbs821
Problem B:Longest Ordered Subsequence A numeric sequence of ai is ordered if a1 < a2 < ... < aN. Let the subsequence of the given numeric sequence (a1, a2, ..., aN) be any sequence (ai1, ai2, ..., aiK), where 1 <= i1 < i2 < ... < iK <= N. For example, sequence (1, 7, 3, 5, 9, 4, 8) has ordered subsequences, e. g., (1, 7), (3, 4, 8) and many others. All longest ordered subsequences are of length 4, e. g., (1, 3, 5, 8).
標(biāo)簽: Subsequence sequence Problem Longest
上傳時(shí)間: 2016-12-08
上傳用戶:busterman
Data Structures and Algorithms with Object-Oriented Design Patterns in Java Bruno R. Preiss B.A.Sc., M.A.Sc., Ph.D., P.Eng. Associate Professor Department of Electrical and Computer Engineering University of Waterloo, Waterloo, Canada
標(biāo)簽: B.A.S R. Object-Oriented Algorithms
上傳時(shí)間: 2017-03-07
上傳用戶:z754970244
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1