数据结构(C语言)用单链表存储一元多项式并实现两个多项式的相加运算.docx
PAGE PAGE # / 6 #i nclude #i nclude #i nclude typedef int ElemType; /*单项链表的声明*/ typedef struct PolynNode{ int coef; // 系数 int expn; // 指数 struct PolynN ode *n ext; }Poly
下载地址
用户评论