码迷,mamicode.com
首页 > 其他好文 > 详细

sort函数的例子

时间:2014-08-17 13:01:32      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   os   io   for   div   

10.11编写程序,使用stable_sort和isShorter将传递给你的elimDups版本的vector排序。打印vector的内容。

#include<algorithm>
#include<vector>
#include<iostream>
#include<string>
using namespace std;

void elimDup(vector<string> &words)
{
  //按字典序排列 sort(words.begin(),words.end());
  //消除重复的字符串 auto end_unique
=unique(words.begin(),words.end());
  //删除多余的字符串 words.erase(end_unique,words.end()); }
bool isShorter(const string &s1,const string &s2) { return s1.size()<s2.size(); } int main() { vector<string> v2={"a","a","dfd","fd","a","df"}; elimDup(v2); for(auto vv:v2) cout<<vv<<" "; cout<<endl;
  //按长度排序之后,保持字典序 stable_sort(v2.begin(),v2.end(),isShorter);
for(auto vv:v2) cout<<vv<<" "; cout<<endl; return 0; }

运行结果如下:

a df dfd fd 
a df fd dfd 

 

sort函数的例子,布布扣,bubuko.com

sort函数的例子

标签:style   blog   color   使用   os   io   for   div   

原文地址:http://www.cnblogs.com/wuchanming/p/3917629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!