题意:输出所有的单词,按字典序从小到大输出,单词不区分大小写。

思路:字典序的话sort就可以,不区分大小写就要用tolower函数。

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF=2147483647;
const int MAXN=1e5+10;
const ll mod=1e9+7;
using namespace std;
typedef long long ll;
set <string> a;
int main(void)
{
    string s;
    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);//把s变成stringstream可以理解的string
        string temp;
        while(ss >> temp)//利用stringstream对读取的时候以空格和回车会结尾去除不必要的字符
            a.insert(temp);
    }
    // 遍历set的操作。指针。
    for(set<string>::iterator it=a.begin(); it!=a.end(); it++)
    {
        cout << *it << endl;
    }
}

1.set适合只出现一次的数据。
2.set 的遍历,插入 insert。
3.stringsteam 对删除空格的操作