题解 | #字符串排序#

字符串排序

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

#include <cctype>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

bool cmp(string& a, string& b) {
    int n = a.size() > b.size() ? b.size() : a.size();
    for (int i = 0; i < n; i++) {
        if (a[i] < b[i])
            return true;
        if (a[i] > b[i])
            return false;
    }
    return a.size() > b.size() ? false : true;
}

int main() {
    int n;
    cin >> n;
    vector<string> inp(n);
    for (int i = 0; i < n; i++) {
        cin >> inp[i];
    }
    sort(inp.begin(), inp.end(), cmp);
    for (auto c : inp)
        cout << c << endl;
}
// 64 位输出请用 printf("%lld")

#华为OD机试真题#
华为OD机测试题 文章被收录于专栏

个人练习专栏

全部评论

相关推荐

身边有人上海、深圳&nbsp;6、7k&nbsp;都去了,真就带薪上班了。
程序员小白条:木的办法, 以后越来越差,还是家附近宅着吧,毕业的人越来越多,岗位都提供不出来,经济又过了人口红利期
点赞 评论 收藏
分享
鬼迹人途:你去投一投尚游游戏,服务器一面,第一个图算法,做完了给你一个策略题,你给出方案他就提出低概率问题,答不上当场给你挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务