题解 | #字符串排序#

字符串排序

https://www.nowcoder.com/practice/5af18ba2eb45443aa91a11e848aa6723

#include <iostream>
#include <string>
#include<vector>
#include<algorithm>
using namespace std;

int main() {
     vector<string>st;
     int n;
     cin>>n;
     while(n--){
        string num;
        cin>>num;
        st.push_back(num);
     }

     sort(st.begin(),st.end());
     for(auto &s:st){
          cout<<s<<endl;
     }


}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
ArisRobert:统一解释一下,第4点的意思是,公司按需通知员工,没被通知到的员工是没法去上班的,所以只要没被通知到,就自动离职。就是一种比较抽象的裁员。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务