首页 > 代码库 > uva10815(set的应用)
uva10815(set的应用)
紫书例题,这道题的例程让我长了知识。以前没有用过cctype和stringstream相关的东西。很实用,值得学习。
#include <cctype>的函数
c++中应该是#include <cctype> c中应该是#include <ctype.h> 以下为字符函数库中常用的函数:
|
#include<iostream>#include<cstdio>#include<cstdlib>#include<cstring>#include<cmath>#include<map>#include<set>#include<vector>#include<algorithm>#include<stack>#include<queue>#include<cctype>#include<sstream>using namespace std;#define INF 1000000000#define eps 1e-8#define pii pair<int,int>#define LL long long int#define maxn 100009string s,buf;set<string>dict;int main(){ //freopen("in.txt","r",stdin); //freopen("out.txt","w",stdout); while(cin>>s) { int len=s.length(); stringstream ss; for(int i=0;i<len;i++) { if(isalpha(s[i])) s[i]=tolower(s[i]); else s[i]=‘ ‘; } ss<<s;
/*也可以ss.str(s),如果清空ss的内容就用ss.str("")。注意ss.str(s)是覆盖掉ss中原来的东西,而ss<<s是在后面添加上s*/ while(ss>>buf)//空格都不会传 { dict.insert(buf); } } for(set<string>::iterator it=dict.begin();it!=dict.end();it++) //注意不能写成it<dict.end(),只有等与不等 cout<<*it<<endl; return 0;}
uva10815(set的应用)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。