3.9 map/multimap容器 3.9.1 map基本概念 简介: map中所有元素都是pair pair中第一个元素为key(键值),起...
3.8 set/multiset容器 3.8.1 set基本概念 特点:所有元素在插入时自动被排序 本质:set/multiset属于关联式容器...
3.5 stack容器 3.5.1 特点:先进后出 3.5.2 stack常用接口 构造函数: stack<T> stk;//stack采用模板...
People on Mars count their numbers with base 13: Zero on Earth is called...
On a broken keyboard, some of the keys are worn out. So when you type so...
For any 4-digit integer except the ones with all the digits being the sa...
关键字: vector容器 deque容器 3.2 vector容器 3.2.1基本概念 功能:vector数据结构和数组非常相似,也称为单端数...
3.1.5 string查找和替换 查找:查找指定字符串是否存在 替换:在指定的位置替换字符串 函数原型: 1 int find(const s...
2.STL初识 2.1 STL的诞生--提高复用性 2.2 STL基本概念 1. STL : Standard Template Library...