cpp學習筆記(三)
16章 標准模板庫簡介
17章 STL string類
18章 STL動態數組類
19章 STL list
20章 STL set於multiset
21章 STL map和multimap
16章 標准模板庫簡介
存儲信息的容器
訪問容器存儲的信息的迭代器
操作容器內容的算法
17章 STL string類
為何需要字符串操作類
使用STL string類
基於模板的STL string實現
18章 STL動態數組類
vector的特點
典型的vector的操作
理解大小和容量
STL deque
19章 STL list
std::list的特點
基本的list操作
20章 STL set於multiset
set和multiset簡介
set和multiset基本操作
set和multiset容器的優缺點
21章 STL map和multimap
STL map和multimap簡介
STL map和multimap的基本操作
使用排序謂詞定制排序行為
//
// main.cpp
// stl_16_21
//
// Created by bikang on 16/9/28.
// Copyright (c) 2016年 bikang. All rights reserved.
//
#include
#include
#include
#include
#include
#include
#include
#include