c++去重函数(对于做到一些题目有需要去重)
根据该博主改编:https://blog.csdn.net/qq_41139830/article/details/80631988(详情请看该博主)一、去重函数 unique(1)头文件#include用法:举例如下: int a[10]={0,1,3,3,4,5,8,8,9,0}; int n=unique(a,a+10)-a; for(int i=0;i<n;...
转载
2019-05-09 10:10:01 ·
6277 阅读 ·
0 评论