首页 > 其他 > 详细

unique函数

时间:2019-05-19 19:48:26      阅读:87      评论:0      收藏:0      [点我收藏+]

学习链接:https://www.cnblogs.com/hua-dong/p/7943983.html

unique用来去掉数组中重复的元素 被包含在algorithm头文件中

看代码:

#include<iostream>
#include<algorithm>
using namespace std;
typedef long long LL;
const int maxn=1e5+50;
const LL INF=1e18;
int main()
{
    int a[10]={1,1,2,2,3,3,4,4,5,5};
    int len=unique(a,a+10)-a;
    for(int i=0;i<len;i++) cout<<a[i]<<" ";cout<<endl;//1 2 3 4 5
//    for(int i=0;i<10;i++) cout<<a[i]<<" ";cout<<endl;
    return 0;
}

 

unique函数

原文:https://www.cnblogs.com/caijiaming/p/10890441.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!