#include<stdio.h>
#include<stdlib.h>
typedef struct node{
struct node *next;
int num;
int exp;}data;
data *creatlist(int *a,int n) //尾插法创建链表
{
data *head,*p,*q;
int i;
head=p=(data *)malloc(sizeof(data));
for(i=0;i<n-1;i=i+2) //注意
{
q=(data *)malloc(sizeof(data));
q->num=a[i];
q->exp=a[i+1];
p->next=q;
p=q;
}
p->next=NULL;
return head;
}
void fun(char *s,int *a,int *n) //将字符串中的正数,负数,0转化为int型
{
int sum,k=0;
while(*s)
{
if(*s=='-')
{
sum=0;
s=s+1;
while(*s>='0'&&*s<='9')
{
sum=sum*10+*s-48;
s++;
}
a[k++]=-sum;
}
else if(*s>='0'&&*s<='9')
{
sum=0;
while(*s>='0'&&*s<='9')
{
sum=sum*10+*s-48;
s++;
}
a[k++]=sum;
}
else
s++;
}
*n=k;
}
void merge(data *head,data *head1) //合并链表
{
data *p,*q,*pa;
pa=head;
p=pa->next;
q=head1->next;
while(p&&q)
{
if(p->exp>q->exp)
{
pa->next=p;
pa=p;
p=p->next;
}
else if(p->exp<q->exp)
{
pa->next=q;
pa=q;
q=q->next;
}
else
{
pa->next=p;
pa=p;
pa->num=pa->num+q->num;
p=p->next;
q=q->next;
}
}
pa->next=p?p:q;
}
void outlist(data *head)
{
data *pa;
for(pa=head->next;pa;pa=pa->next)
{
if(pa->num!=0)
printf("%d %d ",pa->num,pa->exp);
}
putchar('\n');
}
int main()
{
char ch[200],s[200];
int a[100],b[100],k,n;
data *head,*head1;
while(gets(ch)!=NULL)
{
fun(ch,a,&k);
head=creatlist(a,k);
gets(s);
fun(s,b,&n);
head1=creatlist(b,n);
merge(head,head1);
outlist(head);
}
return 0;
}
0.0分
2 人评分
幸运数 (C++代码)浏览:1309 |
出圈】指针malloc版浏览:377 |
判定字符位置 (C语言代码)浏览:849 |
简单的a+b (C语言代码)浏览:497 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:505 |
拆分位数 (C语言代码)浏览:464 |
【偶数求和】 (C语言代码)浏览:452 |
1218题求大神帮忙看看怎么不能过浏览:759 |
C语言训练-求具有abcd=(ab+cd)2性质的四位数 (C语言代码)浏览:935 |
【密码】 (C语言代码)浏览:574 |