▍1. 1
说明: 简单的stl读取,显示,切片程序代码,简单的stl读取,显示,切片程序代码,简单的stl读取,显示,切片程序代码,(3d stl qiepian)
说明: 简单的stl读取,显示,切片程序代码,简单的stl读取,显示,切片程序代码,简单的stl读取,显示,切片程序代码,(3d stl qiepian)
导入STL模型自动切片分层,可以修改分层厚度,生成相应的文件(STL Import auto slices layered model, you can modify the layer thickness to generate the corresponding file)
C++ STL关于map的代码,里面详细说明了map的使用(n c++ STL code on the map, the map is described in detail)
C++标准模板库的SGI实现代码,有助于理解STL(SGI implementation of C++ STL library)
本书为那些没有太多时间学习的程序员提供了一条在工作中学习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))
本书为那些没有太多时间学习的程序员提供了一条在工作中学习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))
多维数组的操作,在STL中的相关程序,找了好久才找到(Operation multidimensional arrays in STL relevant procedures for a long time to find)
多维数组的操作,在STL中的相关程序,找了好久才找到(Operation multidimensional arrays in STL relevant procedures for a long time to find)
用stl实现多项式字符串相乘,用list实现,已测试。(Stl string using polynomial multiplication, with the list implementation, have been tested.)
用stl实现多项式字符串相乘,用list实现,已测试。(Stl string using polynomial multiplication, with the list implementation, have been tested.)
vtk中的STL文件的导入和导出。很好用的。自动识别两种STL格式。(vtk in the STL file import and export. Good use. Automatically recognizes two STL format.)
快速学习stl的书,30分钟掌握stl的pdf格式(Fast learning stl book, 30 minutes to master stl pdf format)
用VC++的STL计算生成的IEEERTS-96的一年52周364天的每天24小时的负荷值的有名值,可用于计算电力系统的可靠性的分析(Calculated using VC++ the STL generated IEEERTS-96, 52 weeks a year a day, 364 days a famous 24-hour load value value can be used to calculate the reliability of the power system analysis)
使用C++ STL进行文件读取,介绍C++标准模板库的基本操作。可以学习对stl的基本操作和数据处理。同时包含对文件的基本编程。(Use C++ STL file read, introduces the basic operation of the C++ standard template library. Can learn the basic operations and data processing of stl. The file contains both basic programming.)
在VC6.0环境下多模态显示STL标准三维模型,可以与鼠标、键盘进行交互。(The OpenGL program to display the STL model file in VC6.0 , it can interact with the mouse or keyboard.)
说明: 求出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. )
stl源码分析,侯捷著,分析的非常详细,对想深入研究STL的朋友非常有帮助。(stl source analysis, Hou Jie, the analysis of very detailed, in-depth study on the STL' s friends want to be very helpful.)
STL实践指南,一本学习STL不错的书,非常值得一看。(STL Guide to Practice, a good book to learn STL, worth a visit.)
代码中包含了部分作者侯捷的<<STL源码剖析>>一书中的程序实例,有助于理解及应用STL,来进行方便高效的编程(Code contains some of Hou Jie, author of <<STL源码剖析>> one book instance, contribute to the understanding and application of STL, to facilitate the efficient programming)