报文重排序
#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;
}
?
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!