码迷,mamicode.com
首页 > 编程语言 > 详细

vector,對string排序

时间:2014-10-26 10:25:15      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   for   sp   on   amp   bs   

這是vector中對string類型排序。

用寫比較函數的方法

 

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
//比較函數,升序排序
bool cmp(const string &x,const string &y)  //&符號不能少
{
  return x>y;
}
int main()
{
freopen("in.txt","r",stdin);
vector<string>vec;
  string s;
  vec.clear();
 int n;
  cin>>n;
  for(int i=0;i<n;i++)
  {
    cin>>s;
    vec.push_back(s);
  }
  sort(vec.begin(),vec.end(),cmp);
 // sort(vec.begin(),vec.end());  若省略第三個參數,默認升序排序
  for(int i=0;i<vec.size();i++)
  {
    cout<<vec[i]<<endl;
  }
  return 0;
}

vector,對string排序

标签:style   io   os   ar   for   sp   on   amp   bs   

原文地址:http://blog.csdn.net/xyinktw/article/details/40460335

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