实验7:Problem H: STL——字符串排序

Description

    对N个字符串排序。
    0

 

Input

    第一行读入N。
    后面N行,每行一个字符串(只包含字母)。

 

Output

    输出共N行,按字典序从小到大输出。

 

Sample Input

5 bcdef qwer tyuiphdjf asdfghjklzzzz z

Sample Output

asdfghjklzzzz bcdef qwer tyuiphdjf z

HINT

 

用STL的string容易解决。


 

 

Append Code

 

 
#include
#include<string>
#include
#include
using namespace std;
int main()
{
    int n;

    string a;
    vector<string> s;
    vector<string>::iterator p;
    cin>>n;
    s.clear();
    while(n--)
    {
        cin>>a;
        s.push_back(a);
    }
    sort(s.begin(),s.end());
    for(p=s.begin();p!=s.end();p++)
    {
        cout<<*p<<endl;
    }
    return 0;
}

 

转载于:https://www.cnblogs.com/auto1945837845/p/5408926.html

你可能感兴趣的:(实验7:Problem H: STL——字符串排序)