首页 > 其他 > 详细

汉字拼音排序

时间:2014-08-06 17:43:11      阅读:330      评论:0      收藏:0      [点我收藏+]
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int main(int argc, char* argv[])
{
string s("中航光电系空方克星股市震荡的安全港湾或引业绩突增");

vector<string> vs;
for(unsigned i=0;i<s.length();i+=2)
vs.push_back(s.substr(i,2));

sort(vs.begin(),vs.end());

vector<string>::iterator it=vs.begin();
for(;it!=vs.end();it++)
cout<<*it;
cout<<endl;

system("pause");
return 0;
}

 

汉字拼音排序,布布扣,bubuko.com

汉字拼音排序

原文:http://www.cnblogs.com/sky-view/p/3894595.html

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