来源:https://en.cppreference.com/w/cpp/container/set
#include <set>
std::set<std::string> boltset;
boltset.count(x)
boltset.emplace(x);
erase
merge
C++17count
find
contains
(C++20)clear
insert
- 增加元素empty
size
来源:https://en.cppreference.com/w/cpp/container/set
#include <set>
std::set<std::string> boltset;
boltset.count(x)
boltset.emplace(x);
erase
merge
C++17count
find
contains
(C++20)clear
insert
- 增加元素empty
size