英文单词排序
Posted JmFv5
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了英文单词排序相关的知识,希望对你有一定的参考价值。
本题要求编写程序,输入若干英文单词,对这些单词按长度从小到大排序后输出。如果长度相同,按照输入的顺序不变。
输入格式:
输入为若干英文单词,每行一个,以#
作为输入结束标志。其中英文单词总数不超过20个,英文单词为长度小于10的仅由小写英文字母组成的字符串。
输出格式:
输出为排序后的结果,每个单词后面都额外输出一个空格。
输入样例:
blue
red
yellow
green
purple
#
输出样例:
red blue green yellow purple
第一次用vector 显示测试点3错误
1 #include <iostream> 2 #include <string> 3 #include <vector> 4 #include <algorithm> 5 6 using namespace std; 7 8 bool cmp(string a,string b) 9 { 10 return a.size()<b.size(); 11 } 12 13 int main() 14 { 15 string str; 16 vector<string> vi; 17 while(cin>>str,str!="#") 18 { 19 vi.push_back(str); 20 } 21 sort(vi.begin(),vi.end(),cmp); 22 for(int i=0;i<vi.size();i++) 23 { 24 cout<<vi[i]<<" "; 25 } 26 return 0; 27 }
用结构体数组就过了........
1 #include<iostream> 2 #include<string> 3 #include<algorithm> 4 using namespace std; 5 struct st 6 { 7 string a; 8 int num; 9 }; 10 st s[25]; 11 bool cmp(st x,st y) 12 { 13 if(x.a.size()!=y.a.size()) 14 return x.a.size()<y.a.size(); 15 else return x.num<y.num; 16 } 17 int main() 18 { 19 int n=0; 20 while(cin>>s[n].a&&s[n].a[0]!=‘#‘) 21 { 22 s[n].num=n; 23 n++; 24 } 25 sort(s,s+n,cmp); 26 for(int i=0;i<n;i++) 27 { 28 cout<<s[i].a<<" "; 29 } 30 }
两个代码基本上相同,现在就想知道,为什么会出错。。。。
以上是关于英文单词排序的主要内容,如果未能解决你的问题,请参考以下文章
使用 C++ 反转句子中的每个单词需要对我的代码片段进行代码优化
如果我想从另一个片段中添加书签,为啥我的书签单词没有保存到 sqlite 数据库?
编写一个程序, 将 a.txt 文件中的单词与 b.txt 文件中的 单词交替合并到 c.txt 文件中, a.txt 文件中的单词用回车符 分隔, b.txt 文件中用回车或空格进行分隔。(代码片段