标签:style blog color io os strong for div sp
紫书例题,这道题的例程让我长了知识。以前没有用过cctype和stringstream相关的东西。很实用,值得学习。
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 100009 string 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; }
标签:style blog color io os strong for div sp
原文地址:http://www.cnblogs.com/zywscq/p/3979958.html