题解 | #字符串排序#
字符串排序
https://www.nowcoder.com/practice/5af18ba2eb45443aa91a11e848aa6723
/*
HW排序2 字符串排序
*/
#include <bits/stdc++.h>
using namespace std;
int main() {
vector<string>v;
int n;
cin>>n;
string s;
while(n--){
cin>>s;
v.push_back(s);
}
stable_sort(v.begin(),v.end(),[](string x,string y)->bool{
return x<y;
});
for(int i=0;i<v.size();i++)cout<<v[i]<<endl;
return 0;
}
// 64 位输出请用 printf("%lld")