STL中的unique和erase

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<cstdlib>
using namespace std;
int main()
{
int n=17;
int mm[30]={1,3,4,2,4,45,3,56,75,434,434,32,54,45,56,4353,32};//n=17; 
sort(mm,mm+n);
int *p;
p=unique(mm,mm+n);
cout<<"排重排序后的结果,包含被查重的元素在内 "<<endl; 
for(int i=0;i<n;i++)
   cout<<mm[i]<<" "; 
cout<<endl;       
int *qq=mm; 
int kg;
for(int i=0;i<n;i++)
{
   if(qq==p)
     {kg=i;break;}
   else
      qq++;     
}
cout<<"输出最后的无重元素排序结果 "<<endl; 
for(int i=0;i<kg;i++)///
  cout<<mm[i]<<" ";        
system("pause"); 
return 0;} 
/*//
排重排序后的结果,包含被查重的元素在内
1 2 3 4 32 45 54 56 75 434 4353 56 56 75 434 434 4353
输出最后的无重元素排序结果
1 2 3 4 32 45 54 56 75 434 4353
*/// 


 

 

 

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<cstdlib>
using namespace std;
int main()
{
string mm="hello_word_hello_word";
sort(mm.begin(),mm.end());
cout<<"排重排序后的结果,包含被查重的元素在内 "<<endl; 
cout<<mm<<endl; 
mm.erase(unique(mm.begin(),mm.end()),mm.end());
cout<<"输出最后的无重元素排序结果 "<<endl; 
cout<<mm<<endl; 
system("pause"); 
return 0;} 
/*//-----
排重排序后的结果,包含被查重的元素在内
___ddeehhlllloooorrww
输出最后的无重元素排序结果
_dehlorw
*/// 


 

 

小结:erase()

erase函数的原型如下:
(1)string& erase ( size_t pos = 0, size_t n = npos );
(2)iterator erase ( iterator position );
(3)iterator erase ( iterator first, iterator last );
也就是说有三种用法:
(1)erase(pos,n); 删除从pos开始的n个字符,比如erase(0,1)就是删除第一个字符
(2)erase(position);删除position处的一个字符(position是个string类型的迭代器)
(3)erase(first,last);删除从first到last之间的字符(first和last都是迭代器)
下面给你一个例子:
// string::erase
#include <iostream>
#include <string>
using namespace std;

int main ()
{
  string str ("This is an example phrase.");
  string::iterator it;

  // 第(1)种用法
  str.erase (10,8);
  cout << str << endl;        // "This is an phrase."

  // 第(2)种用法
  it=str.begin()+9;
  str.erase (it);
  cout << str << endl;        // "This is a phrase."

  // 第(3)种用法
  str.erase (str.begin()+5, str.end()-7);
  cout << str << endl;        // "This phrase."
  return 0;
}

你的假如是删除数组中的一项,并不能说明erase的用法。

 

 

 

小结:unique()

排重排序

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值