在C++中,可以使用标准库中的std::set
或std::unordered_set
来对容器内的元素进行去重。
使用std::set
时,元素会按照大小顺序进行排序,而使用std::unordered_set
时,元素不会进行排序。
以下是一个示例代码:
#include <iostream>
#include <vector>
#include <set>
int main() {
std::vector<int> vec = {1, 2, 3, 2, 1, 4, 5, 3};
// 使用std::set进行去重
std::set<int> uniqueSet(vec.begin(), vec.end());
// 打印去重后的元素
for(auto num : uniqueSet) {
std::cout << num << " ";
}
return 0;
}
在这个示例中,std::set
会自动对vec
中的元素进行去重,并将结果存储在uniqueSet
中。最终输出的结果为:1 2 3 4 5
。