c/c++:简单的数组排序去重代码
程序员文章站
2024-03-22 21:30:58
...
#include <vector>
#include <algorithm>
vector<int> alls; // 存储所有待离散化的值
sort(alls.begin(), alls.end()); // 将所有值排序
alls.erase(unique(alls.begin(), alls.end()), alls.end()); // 去掉重复元素