uva 10815 Andy's First Dictionary

来源:互联网 发布:linux lnmp安装目录 编辑:程序博客网 时间:2024/05/27 16:41
#include<iostream>#include<cstdio>#include<set>#include<sstream>using namespace std;set<string> dict;int main(){    string s,buf;    while(cin>>s)    {        for(int i=0;i<s.length();i++){            if(isalpha(s[i])) s[i]=tolower(s[i]);            else s[i]=' ';        }        stringstream ss(s);        while(ss>>buf) dict.insert(buf);    }    for(set<string>::iterator it=dict.begin();it!=dict.end();it++)            cout<<*it<<endl;    return 0;}

0 0
原创粉丝点击