1093 字符串A+B (20分)

1093 字符串A+B (20分)

给定两个字符串 A 和 B,本题要求你输出 A+B,即两个字符串的并集。要求先输出 A,再输出 B,但重复的字符必须被剔除

输入格式:

输入在两行中分别给出 A 和 B,均为长度不超过 10​6​​的、由可见 ASCII 字符 (即码值为32~126)和空格组成的、由回车标识结束的非空字符串。

输出格式:

在一行中输出题面要求的 A 和 B 的和。

输入样例:

This is a sample test
to show you_How it works

输出样例:

This ampletowyu_Hrk

 

/*
一边输入一边标记,所有出现了的字符全部进行标记,
如果没出出现过就输出且标记 
*/
#include
#include
int main(){
//	freopen("input.txt","r",stdin);
	int i,j,book[255];
	char a[1000005],b[1000005];
	gets(a);
	gets(b);
	memset(book,0,sizeof(book));
	int len = strlen(a);
	for(i = 0;i < len;i++){
		if(!book[a[i]]){
			printf("%c",a[i]);
			book[a[i]] = 1;
		}
	}
	len = strlen(b);
	for(i = 0;i < len;i++){
		if(!book[b[i]]){
			printf("%c",b[i]);
			book[b[i]] = 1;
		}
	}
	return 0;
}

 

你可能感兴趣的:(PAT乙级)