STL knowledge point. Overview.
------ Standard template library self-repair Tutorial and reference manual stl c ++ programming ------
Six Components of STL: container, class algorithm, iterator, function object, adapter, and distributor.
Bytes --------------------------------------------------------------------------
It took me one night to translate an article about STL.Article. The first time I translated this kind of things, I felt that computer books are still better at the original English version, because many concepts cannot be properly expressed in Chinese (it's just that they can't be said ,:-)). Thanks to the first translation, the level must be relatively good. The key is that STL has never been seen before and is unfamiliar, so it is very hard to trans
1. STL Basic IntroductionThe C + + STL (Standard Template Library) is a set of powerful C + + template classes, collectively known as a series of software developed by HP Labs. The purpose of the STL is to standardize the components so that they do not have to be re-developed so that the latter can use the ready-made components, and the open source components are
To better adapt the STL to. NET Development, the Visual C + + product group redesigned the STL in version 2005 of Visual C + +, named Stl.net, and started offering it from the Beta1 version of the product.
In the design of stl.net, the implementation of STL uses the CLI generics and C + + template mechanism. The 2005 version of C + + will join the support of C++
STLAn important feature is the separation of data structures and algorithms. Although this is a simple concept, this separation does make STL very common. For example, because STL's sort () function is completely universal, you can use it to operate almost any data set, including linked lists, containers, and arrays.
Key Points
STL algorithms are provided as template functions. To be different from other co
When I asked some friends from the same company about the serverProgramWhen using STL in, they all answered in their own company's server program development, generally not using STL.Why is the standard library unpopular in the server program development environment? I think STL has three major problems in a highly stable, high-performance, and high-concurrency environment like server programs.
Question 1:
The short description of the STL (Standard Template Library) is not enough to reflect its design prowess, and the following text is merely an "appetizer" that encourages you to delve into the STL.
STL is not only a library, it is an excellent idea as well as a set of conventions. STL contains three main components: co
1th: Carefully select the type of container.
Standard STL sequence Containers: Vector, String, deque, and list.
Standard STL Associative containers: Set, Multiset, map, and Multimap.
Non-standard sequence containers slist and rope. Slist is a one-way list, rope is essentially a "heavy" string.
Non-standard associative containers hash_set, Hase_multiset, Hash_map and Hash_multimap.
Vector as a substitute fo
Author: the robe of anger
1. Introduction to STLSTL (Standard Template Library) is a collection of software developed by the HP lab. It was developed by Alexander Stepanov, Meng Lee, and David R musser while working at the HP lab. Although it mainly appears in C ++, this technology has existed for a long time before it was introduced into C ++.In a broad sense, STL code is divided into three types: algorithm (algorithm), container (container), and ite
By posting articles on the STL Chinese site, I feel that I cannot find the address when I want to refer to it and simply post it to my blog.STL sorting (SORT)
Author winter
STL sorting (SORT)
Why do you have to master STL?
1. Sort Algorithm provided by STL
1.1 Introduction to all sort Algorithms
ZC: Here in the video there is a debugging tips, vs08/vs2010 start, the console program will automatically exit (unlike VC6), then you can set a breakpoint on the last sentence of the function exit, and then view the information printed by the console.ZC: This tells me that the good thing about using string is that the index is out of bounds when the string is manipulated (such as copy/delete operations)"01:05", the main points of this lecture are as follows:One, what things
Previously did not pay attention to the sorting algorithm, because there are very few application scenarios, the recent interview process found that the sorting algorithm is often asked, sometimes in some written or interview topics need to use the sorting algorithm to solve the problem, if each of their own handwritten sort, then it is quite time-consuming, And I don't necessarily write out the wrong sort algorithm in a short time, this time STL prov
Introduction: This article describes the methods of exporting STL classes and classes containing STL in DLLs. Example source code
DLLs cannot directly export generic templates (generalized template), so if you are exporting an STL class, the template must be instantiated (instantiated) first. In addition, if the exported STL
Original article address: http://www.cppblog.com/mzty/archive/2005/12/15/1770.htmlwriter winter
STL sorting (SORT)
Why do you have to master STL?
1. Sort Algorithm provided by STL
1.1 Introduction to all sort Algorithms
1.2 comparison functions in sort
1.3 sort Stability
1.4 full sorting
1.5 parti
1. Why?
By default, a template provides a single definition that can be used for any template parameters that you can think! However, for the person who writes the template, this method is not flexible, especially when the template parameter is a pointer, if you want to instantiate a parameter different from the type, it becomes impossible! Sometimes, it is impossible to disable the same instantiation! So it appears, partial specialization!
At the same time, when using the void * pointer, you ca
Bloggers began to leave the ACM Army a few years ago, so far it has taken a few days to improve the environment. The recent regression Program Ape Army, found that code force plummeted, has not been a night before the OJ of the program ape Preparation army. Has now become a code slag slag. This is a new beginning to write a blog, the new strength of code. will continue to learn the process of updating out, I hope that the code force to recover t_t early.Recently Brush Leetcode, only to find the
type is the model of the comparable concept.Static array type is not a model of the assignable concept (unable to assign a value to the entire static array with "=")2STL IntroductionThe standard Template Library, or STL, defines a set of conceptual systems that provide a logical basis for generic programmingThe parameters of each class template and function template in STL are defined by the concepts in th
Turn from: http://blog.csdn.net/feitianxuxue/article/details/7237749
Boost Library:The boost library is one of C + + third party libraries. As a backup of the standard library, some of these content is expected to become the next generation of C + + standard library content, is the "quasi" standard library, most of the use of Boost library features only need to include the corresponding header file, a few need to link the library. But there are also a lot of things that are experimental in boost
Note: memory management is always the red-light area of the C/C ++ program. There are two focuses on memory management. One is the correct use of memory. For example, new and delete in C ++ should appear in pairs and use raiI to manage memory resources, auto_ptr and other aspects, many C/C ++ books use the introduction of skills. The other is the implementation of memory management, such as the slab distributor of the Linux kernel, Allocator implementation in
1. STL
STL (Standard Template Library) is an important part of the C ++ language standard. STL takes the form of template classes and template functionsProgramProvides various data structures andAlgorithmIf programmers can make full use of STLCodeSpace, execution time, and coding efficiency are greatly improved.
STL
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.