解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
struct node
{
int x;
}t,La[200+10],Lb[100+10];
int LocateElme(struct node *p,int t,int j);
void Listinsert(struct node *p,struct node *q);
void show(struct node *p,int n);
int main()
{
int i,j,k,flag=1,y,len_a,len_b;
while(scanf("%d",&y)!=EOF)
{
if(flag%2)
{
for(i=0;i<y;i++)
{
scanf("%d",&La[i].x);
}
len_a=y;
show(La,len_a);
}
else
{
for(i=0;i<y;i++)
{
scanf("%d",&Lb[i].x);
}
len_b=y;
show(Lb,len_b);
}
flag++;
if(flag%2)
{
j=len_a;
for(i=0;i<len_b;i++)
{
k=LocateElme(La,Lb[i].x,j);
if(k==0)
{Listinsert(&La[j],&Lb[i]);j++;
show(La,j);}
else
show(La,j);
}
printf("\n");
}
}
return 0;
}
int LocateElme(struct node *p,int t,int j)
{
int flag=0;
struct node *ii;
for(ii=p;ii<p+j;ii=ii+1)
{
if(ii->x==t)
{flag=1;break;}
}
return flag;
}
void Listinsert(struct node *p,struct node *q)
{
*p=*q;
}
void show(struct node *p,int n)
{
struct node *iii;
for(iii=p;iii<p+n;iii=iii+1)
{
if(iii==p+n-1)
printf("%d\n",iii->x);
else
printf("%d ",iii->x);
}
}
0.0分
2 人评分
C语言训练-求PI* (C语言代码)(正确结果竟然是谜一样的3.141591)浏览:1338 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
C语言程序设计教程(第三版)课后习题5.7 (Java代码)浏览:910 |
WU-拆分位数 (C++代码)浏览:819 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:593 |
字符逆序 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:592 |
一元一次方程 (C语言代码)浏览:4245 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:725 |
简单的a+b (C语言代码)浏览:600 |