C++25——STL

  • a pair class:表达两个东西之间的关系

  • 容器

    • vector:可扩展的数字,在一头固定增长

    • deque:可扩展的数字,往两头增长

    • list:内部是双向链表

    • set:集合,没有重复的,无序的

    • map:映射(ket,value)

  • 基本函数的模板(排序、搜索等)

以上所有的内容都在std里(使用using namespace std;

所有标识符都是小写

#include
#include
using namespace std;

int main(){
    vector x;	//可以不用设置初始vector大小
    for(int a=0;a<1000;a++)
        x.push_back(a);
    vector::iterator p;
    for(p=x.begin();p

STL:模板&重载

 

比较符号是比较两个vector,而不是仅仅比较两个vector里的内容

V.swap(v2)是交换两个vector,而不是仅仅交换两个vector里的内容

V.at(index)V[index]都可以访问对应索引的值

V.push_back(e):在V中存放e

V.pop_back():取出V中最后存入的数

v.insert(pos,e):在pos处插入e

V.erase(pos):删掉pos处的数

V.find(first,last,item):在first和last之间找出item,并且给出索引值

C++25——STL_第1张图片

 list可以两边存放数值。

#include
using namespace std;
#include
#include
int main(){
    list s;
    s.push_back("Hello");
    s.push_back("world");
    s.push_front("tide");
    s.push_front("cirmson");
    s.push_front("alabama");
    lis::iterator p;
    for(p=s.begin();p!=s.end();p++)	//此处不可以使用p
#include
#include
map price;
price["snapple"]=0.75;
price["coke"]=0.50;
string item;
double total=0;
while(cin>>item)
    total+=price[item];

你可能感兴趣的:(C++,c++)