题解 | #字符串排序#
字符串排序
https://www.nowcoder.com/practice/5af18ba2eb45443aa91a11e848aa6723
使用vector容器存储输入的数据,很多人使用push,这点可以优化,使用emplace相关的操作,
emplace相关操作比push效果更好,不明白的看相关的push和emplace的区别
#include <iostream>
#include <vector>#include <algorithm>
using namespace std;
int main(){
int n;
cin>>n;
vector<string> res;
string s;
while(n--){
cin>>s;
res.emplace_back(s);
}
sort(res.begin(),res.end());
for(string str:res)
cout<<str<<endl;
return 0;
}
#社畜简单的快乐#