Java教程

C++ set的使用

本文主要是介绍C++ set的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<iostream>
#include<set>
using namespace std;

void print(multiset<int,greater<int>> &v)
{
    auto it_s = v.begin(); //迭代器,begin函数,返回的是容器的头元素
    auto it_e = v.end();   // end,返回容器尾元素 
    
    while(it_s != it_e)
    {
        cout<<*it_s<<" ";
        it_s++;
    }

    cout<<endl;
}

int main()
{
    //set<int> s;//默认升序
    multiset<int,greater<int>> s;
    s.insert(1);
    s.insert(20);
    s.insert(15);
    s.insert(16);
    s.insert(15);//元素是唯一的

    s.erase(15);

    auto it = s.find(20);
    cout<<*it<<endl;

   // pair<int,float> p(1,1.2);
    pair<int,float> p;//两个返回值
    p = make_pair(2,2.3);//初始化变量值
    cout<<p.first<<endl;
    cout<<p.second<<endl;

    print(s);
}

这篇关于C++ set的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!