文章

5

粉丝

50

获赞

0

访问

1.9k

头像
数字排序 题解:
P1966 华东师范大学2023年机试
发布于2024年7月1日 15:12
阅读数 399

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

bool cmp(string num1, string num2) {
    return stod(num1) < stod(num2);
}

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

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发