在C++中,std::set
是一个关联容器,它会自动存储唯一元素
以下是一个简单的示例:
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 4, 5, 6, 6, 7};
for (const auto& element : my_set) {
std::cout << element << " ";
}
return 0;
}
输出结果:
1 2 3 4 5 6 7
如您所见,重复的元素(4和6)在std::set
中只出现一次。