题解 | #字符串加密#

字符串加密

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

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

int charToint(char c)
{
    return c-'a';
}

int main() {
    string key;
    string s;
    cin >> key >> s;

    vector<char> res;
    for(char c : key)
    {
        if(count(res.begin(), res.end(), c) == 0)
        {
            res.push_back(c);
        }
    }
    for(char c = 'a'; c <= 'z'; c++)
    {
        if(count(res.begin(), res.end(), c) == 0)
        {
            res.push_back(c);
        }
    }

    string ans;
    for(char c : s)
    {
        ans.push_back(res[charToint(c)]);
    }

    cout << ans;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

用户64975461947315:这不很正常吗,2个月开实习证明,这个薪资也还算合理,深圳Java好多150不包吃不包住呢,而且也提前和你说了没有转正机会,现在贼多牛马公司骗你说毕业转正,你辛辛苦苦干了半年拿到毕业证,后面和你说没hc了😂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务