文章目录
题143.pat甲级练习-1032 Sharing (25 分)
一、题目
二、题解
题目要求找到共用链表的表头的地址输出,我采用的路子是分开遍历两个单词,把遍历到的节点地址对应flag++,然后看谁最先flag=2就输出。
#include <bits/stdc++.h>
using namespace std;
char data0[100000];
int flag[100000],next0[100000];//flag用于表示下标作为地址对应的节点一共被遍历了多少次,next0用于存下一个节点地址
int main()
{
int src1,src2;
cin>>src1>>src2;
int N;
cin>>N;
for(int i=0;i<N;i++)
{
int address;
cin>>address>>data0[address];
cin>>next0[address];
}
int pos1=src1,pos2=src2;
while(pos1!=-1)//遍历第一个单词
{
flag[pos1]++;
pos1=next0[pos1];
}
while(pos2!=-1)//遍历第二个单词
{
flag[pos2]++;
if(flag[pos2]==2)//在遍历第二个单词的时候看是否有一个地址对应的节点已经被遍历过两次
{
break;
}
pos2=next0[pos2];
}
if(pos2!=-1&&flag[pos2]==2)//将首次被遍历过两次的节点地址输出
{
printf("%05d",pos2);//注意输入格式,输出的是五位数(之前不小心直接cout了,导致测试点4过不去)
}
else
{
cout<<"-1"<<endl;
}
}