安迪的第一个字典(UVa10815)
Posted Pink.Pig
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安迪的第一个字典(UVa10815)相关的知识,希望对你有一定的参考价值。
题目具体描述见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1756
C++11代码如下:
1 #include<iostream> 2 #include<set> 3 #include<string> 4 #include<sstream> 5 using namespace std; 6 set<string> dict; 7 8 int main() { 9 string s,buf; 10 while (cin >> s) { 11 for (int i = 0; i < s.length();i++) { 12 if (isalpha(s[i])) s[i]=tolower(s[i]); 13 else s[i] = ‘ ‘; 14 } 15 stringstream ss(s); 16 while(ss >> buf) dict.insert(buf); 17 } 18 for (set<string>::iterator it = dict.begin(); it != dict.end(); it++) 19 cout << *it << endl; 20 return 0; 21 }
以上是关于安迪的第一个字典(UVa10815)的主要内容,如果未能解决你的问题,请参考以下文章
安迪的第一个字典 (Andy's First Dictionary,UVa10815)