Problem : STL——字符串排序

话不多说,先上题目为敬~

Problem L: STL——字符串排序

Time Limit: 1 Sec   Memory Limit: 128 MB
Submit: 3482   Solved: 1666
[ Submit][ Status][ Web Board]

Description

    对N个字符串排序。
    0

Input

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

Output

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

Sample Input

5bcdefqwertyuiphdjfasdfghjklzzzzz

Sample Output

asdfghjklzzzzbcdefqwertyuiphdjfz

HINT

用STL的string容易解决。


Append Code



理解string类的函数的应用~
注意区分push_back和push_pop的区别~

#include   
#include   
#include   
#include   
#include   
#include   
#include   
using namespace std;  
string s[50005];int len[1000005];  
int main()  
{  
    int n;  
   
    string a;  
    vector s;  
    vector::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<


你可能感兴趣的:(C++)