一元多项式的表示及相加

#include<iostream>
using namespace std;    
typedef struct LNode
{  
    float coef;   
    int expn;
    LNode *next;
}LNode,*LinkList;

void CreateList_L(LinkList &L,int n)  
{  
    L=(LinkList)malloc(sizeof(LNode));  
    L->next=NULL;  
    for(int i=n;i>0;i--)  
    {  
        LinkList p=(LinkList)malloc(sizeof(LNode));  
        cin>>p->coef>>p->expn;  
        p->next=L->next;  
        L->next=p;  
    }  
}  

void AddPolyn(LinkList &L1,LinkList &L2)
{
    LinkList h=L1;
    LinkList p1=L1->next;
    LinkList p2=L2->next;
    while(p1&&p2)
    {
        if(p1->expn<p2->expn)
        {
            h=h->next;
            p1=p1->next;
        }		
        else if(p1->expn>p2->expn)
        {
            L2->next=p2->next;
            p2->next=p1;
            h->next=p2;
            h=h->next;
            p2=L2->next;
        }
        else
        {
            if(p1->coef+p2->coef==0)
            {
                h->next=p1->next;
                free(p1);
                p1=h->next;
                L2->next=p2->next;
                free(p2);
                p2=L2->next;
            }
            else
            {
                p1->coef=p1->coef+p2->coef;
                h=h->next;
                p1=p1->next;
                L2->next=p2->next;
                free(p2);
                p2=L2->next;
            }
        }
    }
    while(p2)h->next=p2;
    free(L2);
}

void Visit(LinkList L)
{
    LinkList p=L->next;
    while(p)
    {
        cout<<p->coef<<"x^"<<p->expn;
        p=p->next;
        if(p)cout<<'+';
    }
}

int main()
{
    LinkList L1,L2;
    cout<<"input L1:"<<endl;  
    CreateList_L(L1,4);
    cout<<"input L2:"<<endl;  
    CreateList_L(L2,3);
    Visit(L1);  
    cout<<endl;
    Visit(L2);  
    cout<<endl;  
    AddPolyn(L1,L2);
    Visit(L1);
    cout<<endl;
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值