#include <iostream>
using namespace std;
#define NUMBER 256
void Delete(char *first, char *second)
{
int hash[NUMBER]={0};
char *p=second;
while(*p)
{
hash[*p]=1;
p++;
}
char *slow=first;
char *fast=first;
while(*fast)
{
if(hash[*fast]==0)
{
*slow=*fast;
slow++;
}
fast++;
}
*slow='\0';
}
void main()
{
char first[]="00f-98877+9897";
char second[]="-+";
Delete(first, second);
cout<<first<<endl;
}
【C++面试题】:从第一个字符串中去掉第二个字符串中的所有字符
最新推荐文章于 2024-05-11 00:00:00 发布