标签:++ size link 字典 ott swa medium sea cin
传送门:http://ybt.ssoier.cn:8088/problem_show.php?pid=1185
输入一行单词序列,相邻单词之间由1个或多个空格间隔,请按照字典序输出这些单词,要求重复的单词只输出一次。(区分大小写)
一行单词序列,最少1个单词,最多100个单词,每个单词长度不超过50,单词之间用至少1个空格间隔。数据不含除字母、空格外的其他字符。
按字典序输出这些单词,重复的单词只输出一次。
She wants to go to Peking University to study Chinese
Chinese Peking She University go study to wants
题目出错了,实际上输入的不只一行。
#include<iostream> using namespace std; int tot=0; string a[150]; int main(){ while(cin>>a[++tot]); tot--;//注意别把最后一个空白读进来。 for(int i=1;i<tot;i++) { int tmp=i; for(int j=i+1;j<=tot;j++) if(a[j]<a[tmp])tmp=j; if(tmp!=i)swap(a[i],a[tmp]); } for(int i=1;i<=tot;i++) if(a[i]!=a[i-1])cout<<a[i]<<endl; }
标签:++ size link 字典 ott swa medium sea cin
原文地址:https://www.cnblogs.com/jzxnl/p/11104900.html