特点
有序且唯一
#include<stdio.h>
//1.头文件引入
#include<set>
using namespace std;
int main(){
//2.set的定义
// set<类型> 名称
set<int> test;
//3.元素插入
for(int i = 0;i < 3;i++){
test.insert(10-i);
}
test.insert(5);
test.insert(5);
//4.元素访问,只能使用迭代器
for(set<int>::iterator it = test.begin();it != test.end();it ++)
printf("%d ",*(it));
//5.find返回指定值的迭代器
printf("\nfind返回指定值的迭代器%d\n",*(test.find(9)));
//6.erase删除元素
//删除迭代器
test.erase(test.find(5));
//删除指定值
test.erase(8);
for(set<int>::iterator it = test.begin();it != test.end();it ++)
printf("%d ",*(it));
//删除一个区间
test.insert(5);
test.insert(6);
test.insert(7);
test.insert(8);
test.erase(test.find(6),test.find(8)) ;
printf("\n删除区间[6,8)");
for(set<int>::iterator it = test.begin();it != test.end();it ++)
printf("%d ",*(it));
//7.长度和清空
printf("\n请空前长度%d",test.size()) ;
test.clear();
printf("\n请空后长度%d",test.size()) ;
}