题目链接
知识点:链表
思路
根据给出的地址将第一个字符串连成串,将其中出现的字符置为true,再连接第二个字符串,由地址的唯一指向性,只要出现标记为true的字符,则该字符重复,输出其id即可。
代码
#include <bits/stdc++.h>
using namespace std;
struct Node{
int id,next;
bool flag;
}node[100005];
int main()
{
//freopen("1.txt","r",stdin);
int beg1,beg2,n,a,c;
char b;
scanf("%d %d %d",&beg1,&beg2,&n)