ignore__ 2020-02-25 09:43 采纳率: 100%
浏览 450
已采纳

c语言,一元多项式相乘,相乘结果莫名少第一项

图片说明

输入样例:

4 3 4 -5 2 6 1 -2 0

3 5 20 -7 4 3 1

#include<stdio.h>
#include<stdlib.h>
typedef struct Node *Poly;
struct Node{
    int coef;
    int expon;
    Poly link;
};
Poly read(void);
void Attach(int c,int e,Poly *R);
Poly Sum(Poly p1,Poly p2);
Poly Mult(Poly p1,Poly p2);
void print(Poly p);
void freep(Poly p);
int main(void)
{
    Poly p1,p2;
    p1 = read();
    p2 = read();
    print(Mult(p1,p2));
    print(Sum(p1,p2));
    return 0;
}
Poly read(void)
{
    int N,c,e;
    Poly p,Rear,t;
    scanf("%d",&N);
    p = (Poly)malloc(sizeof(struct Node));
    p->link = NULL;
    Rear = p;
    while(N--)
    {
        scanf("%d %d",&c,&e);
        Attach(c,e,&Rear);
    }
    t = p;
    p = p->link;
    free(t);
    return p;
}
void Attach(int c,int e,Poly *R)
{
    Poly p;
    p = (Poly)malloc(sizeof(struct Node));
    p->coef = c;
    p->expon = e;
    p->link=NULL;
    (*R)->link = p;
    *R = p;
}
Poly Sum(Poly p1,Poly p2)
{
    Poly t1,t2,phead,Rear,t;
    t1 = p1;
    t2 = p2;
    phead = (Poly)malloc(sizeof(struct Node));
    phead->link = NULL;
    Rear = phead;
    while(t1&&t2)
    {
        if(t1->expon == t2->expon)
        {
            if(t1->coef + t2->coef)
            {
                Attach(t1->coef+t2->coef,t1->expon,&Rear);
            }
            t1 = t1->link;
            t2 = t2->link;
        }
        else if(t1->expon > t2->expon)
        {
            Attach(t1->coef,t1->expon,&Rear);
            t1 = t1->link;
        }
        else 
        {
            Attach(t2->coef,t2->expon,&Rear);
            t2 = t2->link;
        }

    }
    while(t1)
    {
        Attach(t1->coef,t1->expon,&Rear);
        t1 = t1->link;
    }
    while(t2)
    {
        Attach(t2->coef,t2->expon,&Rear);
        t2 = t2->link;
    }
    t = phead;
    phead = phead->link;
    free(t);
    return phead;
}
Poly Mult(Poly p1,Poly p2)
{
    Poly t1,t2,t,Rear,phead;
    int c,e;
    if(!p1||!p2)
    {
        return NULL;
    } 
    phead=(Poly)malloc(sizeof(struct Node));
    phead->link = NULL;
    Rear = phead;
    t1 = p1;
    t2 = p1;
    while(t2)
    {
        Attach(t1->coef*t2->coef,t1->expon+t2->expon,&Rear);
        t2 = t2->link; 
    }
    t1 = t1->link;
    while(t1)
    {
        t2 = p2;
        Rear = phead;
        while(t2)
        {
            c=t1->coef*t2->coef;
            e=t1->expon+t2->expon;
            while(Rear->link&&Rear->link->expon>e)
            {
                Rear = Rear->link;
            }
            if(Rear->link&&Rear->link->expon==e)
            {
                if(c+Rear->link->coef)
                {
                    Rear->link->coef+=c;
                }
                else 
                {
                    t = Rear->link;
                    Rear->link = t->link;
                    free(t);
                }
            }
            else 
            {
                t=Rear->link;
                Rear->link = NULL;
                Attach(c,e,&Rear);
                Rear->link = t;
            }
            t2 = t2->link;
        }
        t1 = t1->link;
    }
    t = phead;
    phead = phead->link;
    free(t);
    return phead;
}
void print(Poly p)
{
    int flag = 0;
    if(!p)
    {
        printf("0 0\n");
        return ;
    }
    while(p)
    {
        if(!flag)
        {
            flag = 1;
        }
        else 
        {
            printf(" ");
        }
        printf("%d %d",p->coef,p->expon);
        p = p->link;
    }
    printf("\n");
}



  • 写回答

1条回答 默认 最新

  • dabocaiqq 2020-02-25 10:59
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥200 csgo2的viewmatrix值是否还有别的获取方式
  • ¥15 Stable Diffusion,用Ebsynth utility在视频选帧图重绘,第一步报错,蒙版和帧图没法生成,怎么处理啊
  • ¥15 请把下列每一行代码完整地读懂并注释出来
  • ¥15 pycharm运行main文件,显示没有conda环境
  • ¥15 寻找公式识别开发,自动识别整页文档、图像公式的软件
  • ¥15 为什么eclipse不能再下载了?
  • ¥15 编辑cmake lists 明明写了project项目名,但是还是报错怎么回事
  • ¥15 关于#计算机视觉#的问题:求一份高质量桥梁多病害数据集
  • ¥15 特定网页无法访问,已排除网页问题
  • ¥50 如何将脑的图像投影到颅骨上