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

HDU ACM 2072单词数

时间:2015-04-27 09:53:49      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:c   c++   acm   算法   字符流   

分析:自从有了set、sstream中的istringstream与及string之后,这种问题也变水了,记得不要忘了STL或者是字符串类及字符流等工具哦!、

注意:重复的单词算一个。

#include<iostream>
#include<sstream>
#include<set>
using namespace std;

int main()
{
	char a[10001];
	string b;

	while(gets(a) && a[0]!='#')
	{
		set<string> s;
		istringstream sin(a);
		while(sin>>b)
		{
			s.insert(b);
		}
		cout<<s.size()<<endl;
	}
    return 0;
}


HDU ACM 2072单词数

标签:c   c++   acm   算法   字符流   

原文地址:http://blog.csdn.net/a809146548/article/details/45293335

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