报文重排序

发布时间:2024年01月02日

#include<iostream>
#include<vector>
#include<map>
#include<algorithm>

using namespace std;

int main()
{
? ? int n;
? ? while(cin >> n)
? ? {
? ? ? ? vector<string> arr(n);
? ? ? ? for(int i = 0; i < n; i++)
? ? ? ? {
? ? ? ? ? ? cin >> arr[i];
? ? ? ? }

? ? ? ? map<int, string> mp;

? ? ? ? for(int i = 0; i < n; i++)
? ? ? ? {
? ? ? ? ? ? string str = arr[i];
? ? ? ? ? ? string letters = "";
? ? ? ? ? ? string numbers = "";

? ? ? ? ? ? for(char c : str)
? ? ? ? ? ? {
? ? ? ? ? ? ? ? if(isdigit(c))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? numbers += c;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? else if(isalpha(c))
? ? ? ? ? ? ? ? {
? ? ? ? ? ? ? ? ? ? letters += c;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }

? ? ? ? ? ? int num = stoi(numbers);
? ? ? ? ? ? mp[num] = letters;
? ? ? ? }
? ? ? ??
? ? ? ? vector<int> keys;
? ? ? ? for(auto entry : mp)
? ? ? ? {
? ? ? ? ? ? keys.push_back(entry.first);
? ? ? ? }

? ? ? ? sort(keys.begin(), keys.end());

? ? ? ? for(int i = 0; i < n; i++)
? ? ? ? {
? ? ? ? ? ? cout << mp[keys[i]] << " ";
? ? ? ? }

? ? ? ? cout << endl;
? ? }

? ? return 0;
}
?

文章来源:https://blog.csdn.net/xlfdlbx/article/details/135333000
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。