The Standard Template Library Programmers Guide for C++ 의 표준 템플릿 라이브러리 c + + 프로그래머 가이드
The Standard Template Library, or STL , is a C++ (cplusplus)library of container classes, algorithms, and iterators; it provides many of the basic algorithms and data structures of computer science. 의 표준 템플릿 라이브러리, 또는 stl는 c + + (cplusplus) 라이브러리의 컨테이너 클래스, 알고리즘, 그리고 반복; 이것은 대부분의 기본적인 알고리즘과 데이터 구조의 컴퓨터 과학합니다. The STL is a generic library, meaning that its components are heavily parameterized: almost every component in the STL is a template. the stl는 일반 도서관, 즉, 그 구성 요소는 크게 매개 변수가 : 거의 모든 구성 요소의 stl이 템플릿을합니다. You should make sure that you understand how templates work in C++ before you use the STL. 템플릿을해야합니다에서 작동하는 방법을 이해 있는지 확인합니다 c + +를 사용하기 전에 stl합니다. The Standard Template Library Programmer's Guide 프로그래머 안내서의 표준 템플릿 라이브러리 will show you how to use these classes, algorithms and iterators when coding in the C++ programming language. 이러한 클래스를 사용하는 방법을 보여드립니다, 알고리즘과 반복의 경우 c + + 프로그래밍 언어 코딩합니다. You can 하실 수있습니다 download 다운로드 the full manual, and also available are 전체 설명서, 그리고 사용할 수있습니다 Frequently Asked Questions 자주 묻는 질문 to help and guide you. 도움말 및 안내를합니다.
The Standard Template Library Programmer's Guide 프로그래머 안내서의 표준 템플릿 라이브러리
- Introduction to the STL stl의 소개
- How to use the documentation 의 설명서를 사용하는 방법에
- Containers 컨테이너
- Concepts 개념을
- General concepts 일반적인 개념을
- Sequences 시퀀스
- Associative Containers 컨테이너를 연상
- Associative Container 컨테이너를 연상
- Simple Associative Container 단순 연관 컨테이너를
- Pair Associative Container 쌍 연관 컨테이너를
- Sorted Associative Container 연관 컨테이너를 정렬
- Hashed Associative Container 컨테이너를 연상 해시
- HashFunction hashfunction
- Unique Associative Container 독특한 결합 컨테이너를
- Multiple Associative Container 컨테이너를 여러 개 결합
- Unique Sorted Associative Container 고유 정렬 연관 컨테이너를
- Multiple Sorted Associative Container 여러 개의 정렬 연관 컨테이너를
- Unique Hashed Associative Container 컨테이너를 연상 고유 해시
- Multiple Hashed Associative Container 연관 컨테이너를 여러 개의 해시
- Container classes 컨테이너 클래스
- Sequences 시퀀스
- Associative Containers 컨테이너를 연상
- String package 문자열을 패키지
- rope 밧줄
- Container adaptors 컨테이너 어댑터
- bitset bitset
- Concepts 개념을
- Iterators 반복
- Introduction 소개
- Concepts 개념을
- Iterator Tags 반복자 태그
- Introduction 소개
- iterator_traits iterator_traits
- iterator_category iterator_category
- distance_type distance_type
- value_type value_type
- Iterator tag classes 반복자 태그 교실
- Iterator base classes 반복자 기본 클래스
- Iterator functions 반복자 함수
- Iterator classes 반복자 클래스
- istream_iterator istream_iterator
- ostream_iterator ostream_iterator
- front_insert_iterator front_insert_iterator
- back_insert_iterator back_insert_iterator
- insert_iterator insert_iterator
- reverse_iterator reverse_iterator
- reverse_bidirectional_iterator reverse_bidirectional_iterator
- raw_storage_iterator raw_storage_iterator
- sequence_buffer sequence_buffer
- Algorithms 알고리즘
- Non-mutating algorithms - 돌연변이 아닌 알고리즘을
- Mutating algorithms 돌연변이 알고리즘을
- copy 복사
- copy_n copy_n
- copy_backward copy_backward
- Swap 스왑
- transform 변환
- Replace 교체
- fill 채우기
- fill_n fill_n
- generate 생성
- generate_n generate_n
- Remove 제거
- unique 고유
- unique_copy unique_copy
- reverse 역방향
- reverse_copy reverse_copy
- rotate 회전
- rotate_copy rotate_copy
- random_shuffle random_shuffle
- random_sample random_sample
- random_sample_n random_sample_n
- partition 파티션을
- stable_partition stable_partition
- Sorting 정렬
- Sort 정렬
- nth_element nth_element
- Binary search 이진 검색
- merge 병합
- inplace_merge inplace_merge
- Set operations on sorted ranges 범위를 설정 작업을 정렬














