您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在C++中,可以使用std::set
来实现数组去重操作。std::set
是一个有序的容器,其中的元素是唯一的。
以下是一个示例代码,演示如何使用std::set
来去除数组中的重复元素:
#include <iostream>
#include <set>
#include <vector>
int main() {
// 原始数组
std::vector<int> arr = {1, 2, 3, 4, 2, 3, 5, 1};
// 使用std::set去重
std::set<int> uniqueSet(arr.begin(), arr.end());
// 打印去重后的数组
std::cout << "去重后的数组:";
for (auto it = uniqueSet.begin(); it != uniqueSet.end(); ++it) {
std::cout << *it << " ";
}
std::cout << std::endl;
return 0;
}
在上面的代码中,首先将原始数组arr
转换为std::set
,这样就会自动去除重复元素。然后遍历std::set
中的元素,打印出去重后的数组。
运行上面的代码,输出结果为:
去重后的数组:1 2 3 4 5
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。