Title: STL Tutorial and Reference Guide: C++ Programming with the Standard Template Library (2nd Edition) Author: David R. Musser / Gillmer J. Derge / Atul Saini / Gilmer J. Derge Publisher: Addison-Wesley Page: 560 Edition: 2nd edition (March 27, 2001) Format: PDF Summary: The Standard Template Library was created as the first library of genetic algorithms and data structures, with four ideas in mind: generic programming, abstractness without loss of efficiency, the Von Neumann computation model, and value semantics. This guide provides a tutorial, a description of each element of the library, and sample applications. The expanded second edition includes new code examples and demonstrations of the use of STL in real-world C++ software development it reflects changes made to STL for the final ANSI/ISO C++ language standard.
標(biāo)簽: Programming Reference Standard Template
上傳時(shí)間: 2014-01-19
上傳用戶:netwolf
This book systematically introduced the Standard C Library and the C++ library, C++ Standard Template Library.The features are presented both in alphabetic order and by category.
標(biāo)簽: Standard systematically introduced the
上傳時(shí)間: 2015-11-14
上傳用戶:semi1981
UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard. UC Library Builtin functions: Most of these are standard C functions, but there are a few unique to the UnderC system which give you runtime access to the compiler. You may evaluate expressions, execute commands, compile code, etc. * Expands the text in expr using the UnderC preprocessor, putting the result into buff. void uc_macro_subst(const char* expr, char* buff, int buffsize) * Executes a UC #-command, like #l or #help. uc_cmd() expects the name of the command, _without_ the hash, e.g. uc_cmd("l fred.cpp") or uc_cmd("help"). void uc_cmd(const char* cmd) * Evaluates any C++ expression or statement will return non-zero if unsuccessful.
標(biāo)簽: implementation Extensions libraries standard
上傳時(shí)間: 2013-12-14
上傳用戶:leehom61
這篇文章是關(guān)于C++語(yǔ)言的一個(gè)新的擴(kuò)展——標(biāo)準(zhǔn)模板庫(kù)的(Standard Template Library),也叫STL。 當(dāng)我第一次打算寫(xiě)一篇關(guān)于STL的文章的時(shí)候,我不得不承認(rèn)我當(dāng)時(shí)低估了這個(gè)話題的深度和廣度。有很多內(nèi)容要含蓋,也有很多詳細(xì)描述 STL的書(shū)。因此我重新考慮了一下我原來(lái)的想法。我為什么要寫(xiě)這篇文章,又為什么要投稿呢?這會(huì)有什麼用呢?有再來(lái)一篇關(guān)于STL的文章的 必要嗎? 當(dāng)我翻開(kāi)Musser and Saini的頁(yè)時(shí),我看到了編程時(shí)代在我面前消融。我能看到深夜消失了, 目標(biāo)軟件工程出現(xiàn)了。我看到了可維護(hù)的代 碼。一年過(guò)去了,我使用STL寫(xiě)的軟件仍然很容易維護(hù)。 讓人吃驚的是其他人可以沒(méi)有我而維護(hù)的很好! 然而,我也記得在一開(kāi)始的時(shí)候很難弄懂那些技術(shù)術(shù)語(yǔ)。一次,我買(mǎi)了Musser&Saini,每件事都依次出現(xiàn),但是在那以前我最渴望得到的 東西是一些好的例子。 當(dāng)我開(kāi)始的時(shí)候,作為C++一部分的Stroustrup還沒(méi)出來(lái),它覆蓋了STL。 因此我想寫(xiě)一篇關(guān)于一個(gè)STL程序員的真實(shí)生活的文章可能會(huì)有用。如果我手上有一些好的例子的話,特別是象這樣的新題目,我會(huì)學(xué)的更 快。 另外一件事是STL應(yīng)該很好用。因此,理論上說(shuō),我們應(yīng)該可以馬上開(kāi)始使用STL。
標(biāo)簽: Standard Template Library 語(yǔ)言
上傳時(shí)間: 2016-02-06
上傳用戶:hebmuljb
Prentice Hall - The Standard C Library
標(biāo)簽: Prentice Standard Library Hall
上傳時(shí)間: 2016-02-18
上傳用戶:playboys0
C++STL STL(Standard Template Library,標(biāo)準(zhǔn)模板庫(kù))是惠普實(shí)驗(yàn)室開(kāi)發(fā)的一系列軟件的統(tǒng)稱。它是由Alexander Stepanov、Meng Lee和David R Musser在惠普實(shí)驗(yàn)室工作時(shí)所開(kāi)發(fā)出來(lái)的。現(xiàn)在雖說(shuō)它主要出現(xiàn)在C++中,但在被引入C++之前該技術(shù)就已經(jīng)存在了很長(zhǎng)的一段時(shí)間。 STL的代碼從廣義上講分為三類:algorithm(算法)、container(容器)和iterator(迭代器),幾乎所有的代碼都采用了模板類和模版函數(shù)的方式,這相比于傳統(tǒng)的由函數(shù)和類組成的庫(kù)來(lái)說(shuō)提供了更好的代碼重用機(jī)會(huì)。在C++標(biāo)準(zhǔn)中,STL被組織為下面的13個(gè)頭文件:<algorithm>、<deque>、<functional>、<iterator>、<vector>、<list>、<map>、<memory>、<numeric>、<queue>、<set>、<stack>和<utility>。以下筆者就簡(jiǎn)單介紹一下STL各個(gè)部分的主要特點(diǎn)。
標(biāo)簽: STL Standard Template Library
上傳時(shí)間: 2016-06-20
上傳用戶:cylnpy
The Standard Template Library, or STL, is a C++ library of container classes, algorithms, and iterators it provides many of the basic algorithms and data structures of computer science
標(biāo)簽: algorithms container Standard Template
上傳時(shí)間: 2016-08-17
上傳用戶:彭玖華
一款標(biāo)準(zhǔn)c類庫(kù).Tima(TM-Tiny&Miny) Standard ANSI C based Library
標(biāo)簽: Standard TM-Tiny Library based
上傳時(shí)間: 2017-03-04
上傳用戶:daoxiang126
The standard c library,用于查詢c用法,很好的,當(dāng)字典用
標(biāo)簽: standard library The 查詢
上傳時(shí)間: 2014-12-01
上傳用戶:huql11633
Standard Template Library
標(biāo)簽: Standard Template Library
上傳時(shí)間: 2013-12-18
上傳用戶:x4587
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1