set的使用
【基本用法】
大家可以敲一下这段代码体会一下set的基本初始化和使用
cpp
#include <iostream>
#include <set>
#include <vector>
using namespace std;
int main()
{
set<int> st1; // 空的set
// 使用迭代器构造
string str("abcdef");
set<char> st2(str.begin(), str.end());
set<char> st3(st2); // 拷贝构造
set <int, less<int>> s4 = { 5, 3, 9, 7, 0 };
//构造int类型的空容器,按从小到大排列
return 0;
}