set容器几个关键函数
2018-10-19 06:11:30来源:博客园 阅读 ()
set在OI中非常好用,归纳几种常见的功能qwq
#include<iostream> #include<cstdio> #include<set> //set容器常见用法 using namespace std; //用仿函数可以做到自定义排序规则 class R { public: bool operator()(const int &pre,const int &bac) { return pre>bac;//保证序列前大于后 } }; set<int/*,R*/> s; //去掉注释就会使用仿函数, int main() { s.insert(5); s.insert(4); s.insert(3); s.insert(2); s.insert(1); for(set<int>::iterator i=s.begin();i!=s.end();i++) cout<<*i<<" "; //print 1 2 3 4 5 //erase cout<<endl<<"Erase"; cout<<endl<<s.erase(3)<<endl; //删除成功返回1,否则返回0 for(set<int>::iterator i=s.begin();i!=s.end();i++) cout<<*i<<" "; //print 1 2 4 5 //uper_bound & lower_bound //uper_bound(x):返回 s中 满足大于x 的最小元素 的迭代器 //lower_bound(x):返回 s中 满足大于等于x 的最小元素 的迭代器 cout<<endl<<"uper_bound & lower_bound"; cout<<endl<<*s.upper_bound(3); //print 4 cout<<endl<<*s.lower_bound(3)<<endl; //print 4 cout<<endl<<*s.upper_bound(4); //print 5 cout<<endl<<*s.lower_bound(4)<<endl; //print 4 cout<<endl<<(s.lower_bound(6)==s.end())<<endl; //print 1 当没有一个元素大于等于6时,返回尾迭代器 //insert cout<<endl<<"insert"<<endl; s.insert(6); for(set<int>::iterator i=s.begin();i!=s.end();i++) cout<<*i<<" "; //print 1 2 4 5 6 return 0; }
值得注意的是,当我们用仿函数改变规则使序列从大到小后,upper_bound和lower_bound的意义就不是注释所描述的那样了。现在这两个函数的功能会很奇怪,下面我用一种适用于任何情况的简单非专业描述来说明这两个函数的功能
lower_bound(x) :
- 当容器中存在等于x的元素,返回该元素迭代器
- 否则,假设按照容器元素排列规则将x插入容器合适位置,那么返回的是插入后 x下一个(右边)元素的迭代器,若无元素则返回尾迭代器
exa.
- 6 5 3 2 1 x=4,假设插入后:6 5 4 3 2 1 此时 返回元素3的迭代器
- # % ^ & * ( ,假设插入¥(假设这是有序序列),# ¥ % ^ & * ( 此时 返回元素%的迭代器
upper_bound(x) :
就是没有1.规则的lower_bound(x) 。。。其他一样
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- STL之set 2020-04-28
- STL之map 2020-04-27
- 【图论】几个例题~ 2020-04-14
- C++中自定义结构体或类作为关联容器的键 2020-03-15
- 向量容器vector操作 2020-02-03
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash