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

hdu 2072 单词数

时间:2014-07-23 11:56:56      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   

set的应用

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<string>
 4 #include<set>
 5 using namespace std;
 6 int main()
 7 {
 8     freopen("input.txt","r",stdin);
 9     string s,s1;
10 
11     bool flag;
12     while(getline(cin,s) && s != "#")
13     {
14         set<string>goal;
15         flag = 0;
16         s += " ";
17         for(int i = 0; i < s.size(); i++)
18         {
19             if(s[i] !=  )
20             {
21                 s1 += s[i];
22                 flag = 1;
23             }
24             else if(flag)
25             {
26                 goal.insert(s1);
27                 s1.clear();
28                 flag = 0;
29             }
30         }
31         cout<<goal.size()<<endl;
32     }
33 }

hdu 2072 单词数,布布扣,bubuko.com

hdu 2072 单词数

标签:style   blog   color   os   io   for   

原文地址:http://www.cnblogs.com/imLPT/p/3861928.html

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