PAT (Advanced Level) 1050. String Subtraction (20)

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT (Advanced Level) 1050. String Subtraction (20)相关的知识,希望对你有一定的参考价值。

简单题。

#include<iostream>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cstdio>
#include<map>
#include<queue>
#include<string>
#include<vector>
using namespace std;

const int maxn=100000+10;
char t[maxn];
char s[maxn];
int flag[maxn];

int main()
{
    gets(s);
    gets(t);
    memset(flag,0,sizeof flag);
    for(int i=0;t[i];i++) flag[t[i]]=1;
    for(int i=0;s[i];i++)
    {
        if(flag[s[i]]==1) continue;
        printf("%c",s[i]);
    }
    printf("\n");
    return 0;
}

 

以上是关于PAT (Advanced Level) 1050. String Subtraction (20)的主要内容,如果未能解决你的问题,请参考以下文章

PAT Advanced 1050 String Subtraction (20 分)

PAT Advanced 1050 String Subtraction (20) [Hash散列]

PAT (Advanced Level) 1025. PAT Ranking (25)

PAT Advanced Level 1044

PAT Advanced Level 1043

PAT Advanced Level 1079