登录
首页 » STL » The book the author explains how to combine STL library components in the design...

The book the author explains how to combine STL library components in the design...

于 2022-03-18 发布 文件大小:443.04 kB
0 148
下载积分: 2 下载次数: 1

代码说明:

书中作者解释了怎样结合STL组件来在库的设计得到最大的好处。这样的信息允许你对简单、直接的问题开发简单、直接的解决方案,也帮你对更复杂的问题设计优雅的方法。我描述了常见的STL使用错误,而且向你演示怎么避开它们。那帮助你躲开闪资源漏、不可移植的代码和未定义的行为。我讨论了优化代码的方法,所以你能使STL表现得像它应该的那样快速、光滑。 本书作者为Scott Meyers,由龚敏敏翻译。 -The book the author explains how to combine STL library components in the design to obtain the greatest benefits. This information allows you to simple, direct question of the development of simple, direct solution, but also help you to more complex issues elegant approach. I have described the use of common STL error, and presentation to you how to avoid them. That flash of resources to help you avoid leakage, the code can not be transplanted and undefined behavior. I discussed the ways to optimize the code, so you can STL performance as it should be as fast and smooth. This book written by Scott Meyers, Translations from龚敏敏.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 1使用到了stl sorting 2stl find 3实现所有声明的函数。 关键方法是: virtual Listing sort(stri...
    1使用到了stl sorting 2stl find 3实现所有声明的函数。 关键方法是: virtual Listing sort(string field) 根据选择"email," "start," "close," and "quantity."来对list中的advertisements进行排序。 virtual Listing filter(string keyword) 筛选出whose name or description contains the string given by the parameter keyword; 压缩包里面有代码,指导书,以及Apache服务器。-outcomes. • Use STL sorting functions Use STL find functions Use of appropriate STL functions Produce C++ class implementations given class declarations
    2022-05-18 17:28:47下载
    积分:1
  • STL的文档和BOOST仅有的书籍,推荐!
    STL的文档和BOOST仅有的书籍,推荐!-STL documentation and BOOST only books, recommended!
    2022-04-16 03:08:45下载
    积分:1
  • SGI_STL_Code
    C++标准模板库的SGI实现代码,有助于理解STL(SGI implementation of C++ STL library)
    2014-08-19 11:31:28下载
    积分:1
  • sliding
    说明:  求出sliding window的最大最小值(n array of size n ≤ 106 is given to you. There is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k numbers in the window. Each time the sliding window moves rightwards by one position. Following is an example: The array is [1 3-1-3 5 3 6 7], and k is 3. Window position Minimum value Maximum value [1 3 -1]-3 5 3 6 7 -1 3 1 [3 -1 -3] 5 3 6 7 -3 3 1 3 [-1 -3 5] 3 6 7 -3 5 1 3 -1 [-3 5 3] 6 7 -3 5 1 3 -1 -3 [5 3 6] 7 3 6 1 3 -1 -3 5 [3 6 7] 3 7 Your task is to determine the maximum and minimum values in the sliding window at each position. )
    2011-04-03 19:25:46下载
    积分:1
  • 标准模板库STL编程入门教程 新手指南 请斑竹开通账号
    标准模板库STL编程入门教程 新手指南 请斑竹开通账号-Standard Template Library STL Tutorial Beginner Programming Guide please Chiloscyllium account opened
    2022-01-26 00:50:20下载
    积分:1
  • stlink
    开源stlink实现的源代码。实测效果还行(stlink source code!Open source!!!)
    2021-01-05 21:18:53下载
    积分:1
  • 经典迷宫算法,使用自定义栈来实现,也可使用stl,但需要修改代码...
    经典迷宫算法,使用自定义栈来实现,也可使用stl,但需要修改代码-Classic maze algorithm, use a custom stack to achieve, can also use the stl, but need to modify code
    2022-05-18 01:18:00下载
    积分:1
  • 这是关于几个数相加的一个简单例子,对初学者很有用
    这是关于几个数相加的一个简单例子,对初学者很有用-This is the number of add on a few examples of a simple, very useful for beginners
    2023-07-07 23:15:03下载
    积分:1
  • stlwrite
    stl转换,能够有效的将matlab 转化为stl文件,用于3DMAX的绘图(STL conversion, can effectively convert matlab to STL files, for 3DMAX drawing)
    2021-04-03 17:59:07下载
    积分:1
  • Essential-CPP
    本书为那些没有太多时间学习的程序员提供了一条在工作中学习C++的捷径。它把重点放在那些C++编程中重要的要素上,并覆盖能够帮助解决实际编程问题的特性和技术。 本书将C++的基本内容按照过程风格、泛型风格、基于对象风格,以及面向对象风格进行组织。本书采用复杂度渐进的风格展开,并在讨论解决方案的过程中引入语言特性,便于学习C++的功能和结构,同时理解其目的和基本理念。 书中完整深入探讨了以下主要内容: 泛型编程和标准模板库(STL) 基于对象的编程和类的设计面向对象的编程和类层次体系的设计 函数和类模板的设计和使用 异常处理和运行时类型信息(RTTI)(This book is not much time to learn those programmers provide a learning C++ at work as a shortcut. It focuses on those C++ programming on important elements, and covers issues that can help solve real programming features and technologies. The book will be C++ style basic content in accordance with the process, the generic style, object-based style, and object-oriented style organization. This book uses a progressive style complexity unfold, and language features introduced in the process of discussing solutions, easy to learn C++ function and structure, and to understand its purpose and basic concepts. The book explores the full depth of the following main elements: Generic programming and the Standard Template Library (STL) Programming and class design object-oriented programming and design objects class hierarchy based Design and use functions and class template Exception handling and runtime type information (RTTI))
    2013-12-06 15:01:18下载
    积分:1
  • 696518资源总数
  • 105554会员总数
  • 2今日下载