码迷,mamicode.com
首页 > 其他好文 > 详细

安迪的第一个字典(UVa10815)

时间:2018-07-05 21:24:00      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:字典   online   href   lan   lin   int   style   item   end   

 

  题目具体描述见: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)

标签:字典   online   href   lan   lin   int   style   item   end   

原文地址:https://www.cnblogs.com/pgzhang/p/9270052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!