#include
using namespace std;
#include
typedef int ElemType;
struct Pnomial //Pnomial=Polynomial(多项式)
{
ElemType co,de1,de2,de3;
//co=coefficient(系数),de=degree(次数)
Pnomial* next;
};
Pnomial *ADD(Pnomial *ph);
void mul(Pnomial *ph,Pnomial *qh);
void main()
{
Pnomial *ph,*qh,*p,*s,*q;
//ph表头指针,p移动指针,q临时储存结点
ph=p=new Pnomial;
qh=q=new Pnomial;
coutde3;
cout