常用的c++stl

本文介绍了C++标准模板库(STL)中的几个关键组件,包括set、list、map及vector的基本操作,如去重、排序、查找以及利用迭代器进行元素的增删等。通过示例展示了如何高效地使用这些组件进行数据处理。
摘要由CSDN通过智能技术生成

c++作为面向对象的设计语言,stl使其无比出色用了许久的stl至今还要查笔记(惭愧。。),今天总结一下。
这是set的用法。
在这里插入图片描述
这里非常重要的是set可以去重和自排序,并且可以使用find函数进行o(lgn)的查找。

LIST
注意insert(it,n);可以在迭代器it的位置插入n。等同于数据结构课上学的链表。
list用法大全
利用stringstream可以将字符串类型重新读入为整型。

    stringstream ss(s);
    int x;
    int i = 0;
    while(x >> ss)
    {
        a[i] = x;
        i++;
    }

map是按first进行排序的
reversereverse(pc, pc+pos+1);从两个位置将数组反转****
max_elementint pos = max_element(pc, pc+n-i) - pc;求最大数的位置
测试程序:

#include <bits/stdc++.h>
using namespace std;
int a[100];
int main()
{
    for(int i = 0;i < 10;++i)
    {
        scanf("%d",&a[i]);
    }
    reverse(a,a + 10);
    int pos = max_element(a,a + 10) - a;
    printf("%d\n",pos);
    for(int i = 0;i < 10;++i)
    {
        printf("%d ",a[i]);
    }
    printf("\n");
    return 0;
}
/*样例
1 2 3 4 5 6 7 8 9 0
输出
1
0 9 8 7 6 5 4 3 2 1 
*/

测试程序二:

#include <bits/stdc++.h>
using namespace std;
int main()
{
    vector<int> a;
    for(int i = 0;i < 10;++i)
    {
        int m;
        scanf("%d",&m);
        a.push_back(m);
    }
    reverse(a.begin(),a.end());
    vector<int> :: iterator pos;
    pos = max_element(a.begin(),a.end());
    printf("%d\n",*pos);
    for(int i = 0;i < 10;++i)
    {
        printf("%d ",a[i]);
    }
    printf("\n");
    return 0;
}
/*样例
1 2 3 4 5 6 7 8 9 0
输出
9
0 9 8 7 6 5 4 3 2 1 
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值