SGI STL源码-SGI STL FOSS 下载
|
sgi-STL的相关资料.有代码和帮助文件-sgi-STL relevant information. A code and help files 下载
|
介绍STL内部的一本好的电子书籍,内附具体的SGI STl实现- 下载
|
著名的STL三大库之一,SGI STL的源代码,极具研究价值!- 下载
|
著名的SGI的STL lib源码.(C++范型类编成,没有合适的分类,但是放到数据结构类别中也绝对适合)-famous SGI STL lib source. (C Fan-type establishment, and there is no suitable categories, but the data structure into categories have absolutely appropriate) 下载
|
The_Annotated_STL_Source(using SGI STL)_wroten_by_HouJie-The_Annotated_STL_Source (using SGI STL ) _wroten_by_HouJie 下载
|
序列化(Chapter 14. Serialization)。一个非常简单的序列化程序,用于将完整的游戏实体树保存到磁盘中或从磁盘中载入。它使用一个自定义的流类和指针恢复方法(注:本章程序如在VC6.0环境编译,则要采用第三方的stl,比如sgi的stl:http://www.sgi.com/tech/stl/。可使用VC7.0,程序在VC7.0下可以编译通过)。-sequence of (Chapter 14. Serialization). A very simple sequence of procedures used to complete the game tree preservation entities to disk or printed from the disk. It uses a defined category of flow indicators and restoration methods (Note : this chapter procedures in VC6.0 environment compiler would use third-party stl, such as the sgi stl : http://www.sgi.com/tech/stl/. Use VC7.0 procedures under the VC7.0 compile). 下载
|
正则表达式,可以与POSIX API和Perl语言处理正则表达式的功能相媲美,而且还能支持各种字符类型(如char、wchar_t,甚至还可以是自定义字符类型); 多线程,想了很久的跨平台多线程库了; 数据结构“图”,再加上即将加入标准的hash_set、hash_map、hash_multiset、hash_multimap等等(事实上不少STL实作,如SGI STL,已经支持以上数据结构),C++对数据结构的支持已近完备; python,没错,对Python语言的支持; 智能指针,与std::auto_ptr一起善加使用,可杜绝内存泄露,效率更不可和垃圾收集机制GC同日而语; 更有循环冗余的CRC、可轻松定义返回多个值函数的元组tuple、可容纳不同类型值的any、对标准库各方面的补充…… 还在迅速扩大中,部分内容有望进入C++标准库…… -regular expression. with the POSIX API and Perl language processing Regular expressions are comparable to the function, but also support various types of characters (such as char and wchar_t. they can even be defined character type); Multithreading, for a long time to cross-platform and multi-threaded library; Data Structure "map", coupled with the imminent accession to the standards hash_set, hash_map. hash_multiset. hash_multimap etc. (In fact, many STL implementations, such as the SGI STL, support has been above data structure), C data structures to support the nearly complete; python, it is true that right Python language support; Smart indicator, std : : auto_ptr together to make good use, Memory can stop leaking, and not more efficient garbage collection mechanism GC same b 下载
|
一 般人 對C++ templates 的粗淺印象,大約停留在「容器(containers)」的製作上 。稍有研究 則會發現,templates衍生出來的C++ Generic Programming(泛型編程)技術,在C++ 標準程 式庫中 已經遍地 開花結果。以STL為重要骨幹的C++ 標準程式庫,將templates 廣泛運用於容 器(containers)、演算法(algorithms)、仿函式(functors)、配接器(adapters)、配置器(allocators)、 迭代器(iterators)上 頭,無處不在,無役不與,乃至於原有的class-based iostream都被改寫為 template-based iostream。 徹底研究過STL 源碼(SGI 版本)的我,原以為從此所有C++ templates 技法都將不出我的理 解與經驗之外。但是《Modern C++ Design》在在打破了我的想法與自信。這本書所談的template 技巧,以及據以實作出來的Loki 程式庫,讓我瞠目結舌,陷入沉思…與…呃…恍惚!。 本書分為兩大部分。首先(第一 篇)是基礎技術的討論,包括template template parameters(請 別懷疑,我並沒有多寫一 個字)、policies-based design、compile-time programming、recursive templates, typelists。每一 項技術都讓人 聞所未聞,見所未見。- 下载
|