解题思路:
注意事项:
参考代码:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
struct node
{
int x;
}Lc[200+10],Lb[100+10],La[110];
void Listinsert(struct node *p,struct node *q);
void show(struct node *p,int n);
int main()
{
int i,j,k,flag=1,len_a,len_b,len_c,y;
while(scanf("%d",&y)!=EOF)
{
if(flag%2)
{
for(i=0;i<y;i++)
{
scanf("%d",&La[i].x);
}
len_a=y;
}
else
{
for(i=0;i<y;i++)
{
scanf("%d",&Lb[i].x);
}
len_b=y;
}
flag++;
if(flag%2)
{
len_c=len_a+len_b;
i=k=j=0;
while(i<len_c&&j<len_a&&k<len_b)
{
if(La[j].x>=Lb[k].x)
{
Listinsert(&Lc[i++],&Lb[k++]);
}
else
Listinsert(&Lc[i++],&La[j++]);
}
while(j<len_a)
{
Listinsert(&Lc[i++],&La[j++]);
}
while(k<len_b)
{
Listinsert(&Lc[i++],&Lb[k++]);
}
show(Lc,len_c);
}
}
return 0;
}
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)
printf("%d",iii->x);
else
printf(" %d",iii->x);
}
printf("\n");
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:596 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:702 |
拆分位数 (C语言代码)浏览:1361 |
C语言训练-大、小写问题 (C语言代码)浏览:792 |
【排队买票】 (C语言代码)浏览:944 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:913 |
P1000 (C语言代码)浏览:911 |
蓝桥杯历届试题-翻硬币 (C++代码)浏览:953 |
C语言训练-8除不尽的数 (C语言代码)浏览:1469 |