刷题:华为机试 HJ14 二位数组排序

#include <iostream>
#include <string.h>
using namespace std;

int main()
{
    int n;
    cin >> n;
    char s[1001][101];
    for (int i = 0; i < n; i++)
    {
        cin >> s[i];
    }
    cout << endl;
    char temp[101];
    for (int i = 0; i < n; i++)
        for (int j = 0; j < n; j++)
        {
            if (strcmp(s[j], s[j + 1]) > 0)
            {
                strcpy(temp, s[j]);
                strcpy(s[j], s[j + 1]);
                strcpy(s[j + 1], temp);
            }
        }
    for (int i = 0; i < n; i++)
    {
        cout << s[i] << endl;
    }

    return 0;
}

这段代码及给的测试用例在VS2019上能够运行通过,但是在网页的在线编译器上,输出时,总把最后一个字符串给漏掉,很奇怪。这段代码算是暴力直观的解法,还可以使用更为简单的做法:

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

bool cmp(string a, string b)
{
    return a < b;
}

int main()
{
    int n;
    cin >> n;
    vector<string> strs;
    string str;
    for (int i = 0; i < n; ++i) {
        cin >> str;
        strs.push_back(str);
    }
    cout << endl;
    sort(strs.begin(), strs.end(), cmp);
    for (int i = 0; i < n; ++i) {
        cout << strs[i] << endl;
    }
    return 0;
}

利用vector和sort函数解决问题更加方便。
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值