个人整理的C&C++的优秀书籍,也是网络上很多人推荐的书籍~ 书籍包括: 1、Effective C++(侯捷译 - 第三版).pdf; 2、Effective STL中文版(2001).pdf; 3、More Effective C++(中文版2000).pdf; 4、高质量 C&C++ 编程指南(2001).pdf; 5、深度探索C++对象模型.pdf; 6、Visual C++ 6.0程序员指南.pdf; 7、VisualC++MFC入门教程.chm; 8、MFC深入浅出李进久.chm; 9、WINDOWS核心编程.chm;
2023-11-15 08:03:19 40.84MB EffectiveC++ STL Windows核心编程
1
C++中STL通用容器和通用算法的知识。这是其中的源程序。
2023-10-12 20:52:08 8.73MB C++ STL
1
C++模板编程和STL编程
2023-10-09 08:02:51 13.98MB C++ C++模板 C++模板编 C++STL
1
用来查找算法 如 istream::read // read a file into memory #include #include using namespace std; int main () { int length; char * buffer; ifstream is; is.open ("test.txt", ios::binary ); // get length of file: is.seekg (0, ios::end); length = is.tellg(); is.seekg (0, ios::beg); // allocate memory: buffer = new char [length]; // read data as a block: is.read (buffer,length); is.close(); cout.write (buffer,length); delete[] buffer; return 0;
2023-10-08 08:03:39 1.42MB C++
1
学习编程的人都知道,阅读、剖析名家代码乃是提高水平的捷径。源码之前,了无秘密。大师们的缜密思维、经验结晶、技术思路、独到风格,都原原本本体现在源码之中。 这本书所呈现的源码,使读者看到vector的实现、list的实现、heap的实现、deque的实现、Red Black tree的实现、hash table的实现、set/map的实现;看到各种算法(排序、查找、排列组合、数据移动与复制技术)的实现;甚至还能够看到底层的memory pool和高阶抽象的traits机制的实现。
2023-09-17 23:02:55 23.01MB STL 源码分析 侯婕
1
掌握C ++ 17 STL 这是发行的的代码存储库。 它包含从头到尾完成本书所必需的所有支持项目文件。 关于这本书 在本书中,您将看到C ++ 17标准库的最重要的功能。 为了简洁起见,省略了某些部分,例如; 但是我们将介绍整个现代STL(每个标准容器和每个标准算法),以及诸如智能指针,随机数,正则表达式和C ++新库等重要主题。 您将学习构建自己的迭代器类型; 您自己的内存分配器,使用std :: pmr :: memory_resource; 您自己的线程池,使用std :: future。 说明和导航 05章的代码被组织到一个文件夹中,Chapter05的代码被组织在一个单独的文件夹中。 第01章和第02章没有代码。 该代码将如下所示: public class Program { public static void Main(string[]
2023-09-05 06:43:55 57KB C++
1
STL源码剖析,非常经典的一本书,熟读几遍,找工作写几个算法不在话下
2023-08-09 16:19:01 11.61MB STL
1
切片机 RepRap 3D 打印机 STL 切片器和 GCode 生成器
2023-07-09 14:38:05 42KB Python
1
ldraw2stl 将 LEGO LDraw 文件转换为 STL,用于超大尺寸和 3D 打印!! 在以下位置获取 ldraw 零件档案: wget unzip complete.zip bin/dat2stl --file ldraw/parts/3894.dat --ldrawdir ./ldraw 安装 LeoCAD 以便您可以找到您的零件(可选) 记下 LeoCAD 中的 .dat 文件名,然后运行: bin/dat2stl --file /usr/share/ldraw/parts/3894.dat --ldrawdir ./ldraw --scale 4 > 3894.stl 对于4倍的比例,其中之一!
2023-07-05 14:18:41 6KB lego 3d-printing Perl
1
* Learn the latest features of C++ and how to write better code by using the * Standard Library (STL). Reduce the development time for your applications. Understand the scope and power of STL features to deal with real-world problems. * Compose your own algorithms without forfeiting the simplicity and elegance of the STL way
2023-06-18 02:08:34 9.1MB C++17 STL Cookbook
1