题解 | #字符串排序#

字符串排序

https://www.nowcoder.com/practice/5190a1db6f4f4ddb92fd9c365c944584

#include <bits/stdc++.h>
using namespace std;
int main() {
    string s; getline(cin, s);
    vector<pair<char,int>> sto;
    for (int i = 0; i < s.size(); ++i) if (isalpha(s[i])) sto.push_back({tolower(s[i]), i});
    sort(sto.begin(), sto.end());
    string ans = s;
    int p = 0;
    for (int i = 0; i < s.size(); ++i) if (isalpha(s[i])) ans[i] = s[sto[p++].second];
    cout << ans;
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 10:46
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务