在 C++ 中,std::set
是一個關聯容器,它包含一組唯一的對象
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
for (std::set<int>::iterator it = my_set.begin(); it != my_set.end(); ++it) {
std::cout << *it << " ";
}
return 0;
}
#include <iostream>
#include <set>
int main() {
std::set<int> my_set = {1, 2, 3, 4, 5};
for (const auto &element : my_set) {
std::cout << element << " ";
}
return 0;
}
在這兩個示例中,我們首先創建了一個包含整數的 std::set
,然后使用迭代器或范圍循環遍歷并打印集合中的每個元素。請注意,std::set
中的元素默認是按升序排列的。