原始题目
题目大意
给定一段含标点的文章,将其中的单词全部按小写的字典序输出。
解题思路
- 去年做过这个题,当时入门
- 现在利用strig类和stringstream类可以轻松完成任务
解题代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
| #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <set> #include <queue> #include <map> #include <vector> #include <stack> #include <iostream> #include <iomanip> #include <sstream> #include <bits/stdc++.h> #define rep(i,a,n) for(int i=a;i<n;++i) #define per(i,a,n) for(int i=n-a;i>=a;--i) #define se second #define fi first #define pb push_back #define mp make_pair #define np next_permutation #define ms(x,a) memset((x),a,sizeof((x))) #define all(x) x.begin(),x.end() #define eps 1e-9 #define INF 0x3f3f3f3f using namespace std; string s,ans;
int main(){ ios::sync_with_stdio(false);
set <string> sset; while(cin>>s){ rep(i,0,s.length()){ if(!isalpha(s[i])) s[i]=' '; else s[i]=tolower(s[i]); }
stringstream ss(s); while(ss>>ans){ sset.insert(ans); } } for(set<string>::iterator it=sset.begin();it!=sset.end();it++){ cout<<*it<<endl; } }
|
收获与反思