Description
XY学长刚刚立下了再不过CET就直播xx的flag,为了不真的开启直播模式,XY学长决定好好学习英语。于是他每天都读一篇只包含生词的英语文章,并以自己高达450的智商在一秒钟之内记忆下来。
现在给你一篇XY学长今天要读的文章,请你写一个程序,输出他都学习到了哪些单词。
要求:如果文章中有相同的单词,那么仅仅输出一次;而且如果两个单词只有大小写不同,将他们视为相同的单词。
Input
测试数据将输入一篇文章。不超过5000行,每一行最多200个字符,并以EOF结束。
Output
按照字典序输出他学到的单词,每行输出一个单词,输出单词时所有的字母全部小写。
数据保证最多有5000个需要输出的单词。
Sample Input
样例输入①
a a a a a a a a, a a a a a a. a a a a b a a a. a? a!!!
样例输入②
Adventures in Disneyland Two blondes were going to Disneyland when they came to a fork in the road. The sign read: "Disneyland Left." So they went home.
Sample Output
样例输出①
a b
样例输出②
a adventures blondes came disneyland fork going home in left read road sign so the they to two went were when
Hint
输入可能包含标点符号,但标点符号显然不能算作单词的一部分。
这个题目中用到的函数注意:
1.isalpha(c)~判断是否为英文字符
2.tolower(c)~将字符转换成小写
3.字符串输入sstream
4.将字符串分割成单词:
stringstream temp(str); //分割成一个个单词
5.将字符串插入进set中,自动排序~
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <sstream>
#include <vector>
#include <string>
#include <set>
#include <stack>
#include <map>
#define ull unsigned long long
#define ll long long
using namespace std;
set<string> a;
string s,x;
int main()
{
while(cin>>s)
{
for(int i=0;i<s.length();i++)
{
if(isalpha(s[i]))//判断是不是英文字母
{
s[i]=tolower(s[i]);//把大写都换成小写
}
else
{
s[i]=' ';
}
}
stringstream ss(s);//合成单词
while(ss>>x)
{
a.insert(x);
}
}
for(set<string>::iterator i=a.begin();i!=a.end();i++)//遍历set中每一个单词
{
cout<<*i<<endl;
}
return 0;
}