这篇博客是本人在学习算法中遇到的一个常用的函数,记录分享给大家
注意 :unique()函数是删除相邻的重复元素,并且返回的是去重范围后的第一个元素的地址,左闭右开
#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> v={5,2,7,4,1,2,4,5,1};
sort(v.begin(),v.end());
auto pos=unique(v.begin(),v.end());
v.erase(pos,v.end());
for(auto e : v)
{
cout<<e<<" ";
}
int a[10]={1,3,2,4,6,2,1,1,5,2};
sort(a,a+10);
int n=unique(a,a+10)-a;//返回的是地址,所以要减去首元素的地址,得到n
//注意nuique的返回的是删除完的数组,
//的最后一个元素的下一个位置的地址
for(int i=0;i<n;i++)
{
cout<<a[i]<<" ";
}
return 0;
}