回复 14楼 wp231957
多手帮你重新编辑了一下,你看看这样会不会更好一些。
将同用途的变量放在同一组神明中。
所以指针根据用途,会有三组。
一组,头指针,一组临时指针,一组遍历链表用的指针。
程序代码:
#include <stdio.h>
#include <malloc.h>
#define N 9
typedef struct data
{
int value;
struct data* next;
}tdata,*pdata;
void prnlist(pdata head)
{
pdata pfirst=head->next;
while(pfirst!=NULL)
{
printf("%d ",pfirst->value);
pfirst=pfirst->next;
}
printf("\n");
}
int main(int argc, char* argv[])
{
pdata pfirst1, pfirst2;
pdata head1, head2;
pdata psecond1, psecond2;
int i;
pfirst1=(pdata)malloc(sizeof(tdata));//第一个链表哑节点
head1=pfirst1;
head1->value=0;
head1->next=NULL;
psecond1 = pfirst1;
printf("请录入第一组数据 :\n");
for(i=0;i<N;i++)
{
pfirst1=(pdata)malloc(sizeof(tdata));
scanf("%d",&pfirst1->value);
pfirst1->next=NULL;
psecond1->next=pfirst1;
psecond1=pfirst1;
}
pfirst2=(pdata)malloc(sizeof(tdata));//第二个链表哑节点
head2=pfirst2;
head2->value=0;
head2->next=NULL;
psecond2 = pfirst2;
printf("请录入第二组数据:\n");
for(i=0;i<N;i++)
{
pfirst2=(pdata)malloc(sizeof(tdata));
scanf("%d",&pfirst2->value);
pfirst2->next=NULL;
psecond2->next=pfirst2;
psecond2=pfirst2;
}
printf("你所录入的两组数据如下:\n");
prnlist(head1);
prnlist(head2);
printf("共有数据如下:\n");
for(pfirst1=head1->next;pfirst1!=NULL;pfirst1=pfirst1->next)
{
for(pfirst2=head2->next;pfirst2!=NULL;pfirst2=pfirst2->next)
{
if(pfirst2->value==pfirst1->value) printf("%d ",pfirst2->value);
}
}
printf("\n");
return 0;
}
[此贴子已经被作者于2017-3-23 22:28编辑过]