一元多项式程序(C++)
数据结构实验《一元多项式》 #include typedef struct node { float coef; int exp; int flag; struct node *next; }PolyNode,*LinkList; //--------------建立一元多项式-------------// LinkList Create_LinkList() { LinkList head;
数据结构实验《一元多项式》 #include typedef struct node { float coef; int exp; int flag; struct node *next; }PolyNode,*LinkList; //--------------建立一元多项式-------------// LinkList Create_LinkList() { LinkList head;