题解 | #字符串字符匹配#

字符串字符匹配

https://www.nowcoder.com/practice/22fdeb9610ef426f9505e3ab60164c93

#include <iostream>
#include <string>
#include <map>
using namespace std;

int main() {
    string str1;
    getline(cin, str1);
    int len = str1.length();
    
    char c;
    map<char,int> hash;
    
    while (cin >> c){
        auto it = hash.find(c);
        if (it == hash.end()){
            hash[c] = 1;
        }
    }

    int n = 0, m = 0;
    for (int i = 0; i < len; i++){
        auto it = hash.find(str1[i]);
        if (it != hash.end()){ //可以找到字符串里的字符
             n++;
        }
        else{//不能找到
            m++;
        }
    }

    if (m == 0){
        cout << "true" <<endl;
    }
    else{
        cout << "false" <<endl;
    }
 
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

jack_miller:杜:你不用我那你就用我的美赞臣
点赞 评论 收藏
分享
10-30 10:16
南京大学 Java
龚至诚:给南大✌️跪了
点赞 评论 收藏
分享
我朋友的华子2012,HR已经开始问意向地区了,好急
不讲武德的黑眼圈很能干:急得不行 也不说评级 不知道报的多少啊😡
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务