题解 | #字符串加密#

https://www.nowcoder.com/practice/e4af1fe682b54459b2a211df91a91cf3

可以使用哈希表查看是否重复
#include<bits/stdc++.h>
using namespace std;
int main(){
    string key;
    cin >> key;
    map<char, int> buffer;
    vector<char> alpha(26);
    int position = 0;
    for(char ch : key){
        if(!buffer.count(ch)){
            alpha[position] = ch;
            buffer[ch] = 1;
            position++;
        }
    }
    for(char ch = 'a'; ch < 'z' + 1; ch++){
        if(!buffer.count(ch)){
            alpha[position] = ch;
            buffer[ch] = 1;
            position++;
        }
    }
    string toBeDealt;
    while(cin >> toBeDealt){
        for(char &ch : toBeDealt){
            ch = alpha[ch - 'a'];
        }
        cout << toBeDealt << ' ';
    }
    return 0;
}


全部评论

相关推荐

孤寡孤寡的牛牛很热情:为什么我2本9硕投了很多,都是简历或者挂,难道那个恶心人的测评真的得认真做吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务