C++ STL中的容器-Set
程序员文章站
2024-03-22 17:55:34
...
C++ STL中的容器-Set
set跟vector差不多,它跟vector的唯一区别就是,set里面的元素是有序的且唯一的,只要你往set里添加元素,它就会自动排序,而且,如果你添加的元素set里面本来就存在,那么这次添加操作就不执行。要想用set先加个头文件set。
其中数值型按照从小到大排列;
字符型按照字典序排列;
#include <iostream>
#include <set>
#include <string>
using namespace std;
template <typename T>
void showset(set<T> v)
{
for (set<T>::iterator it = v.begin(); it != v.end(); it++)
{
cout << *it;
}
cout << endl;
}
int main()
{
set<int> s1{ 9,8,1,2,3,4,5,5,5,6,7,7 }; //自动排序,从小到大,剔除相同项
showset(s1);
set<string> s2{ "hello","sysy","school","hello" }; //字典序排序
showset(s2);
s1.insert(9); //有这个值了,do nothing
showset(s1);
s2.insert("aaa"); //没有这个字符串,添加并且排序
showset(s2);
system("pause");
return 0;
}
上一篇: 树相关基础入门题选
下一篇: python学习笔记——5. 类