一元多项式程序(C++) 时间:2014-12-09 15:26:51 【文件属性】: 文件名称:一元多项式程序(C++) 文件大小:2KB 文件格式:CPP 更新时间:2014-12-09 15:26:51 数据结构 一元多项式 C++ 数据结构实验《一元多项式》 #include typedef struct node { float coef; int exp; int flag; struct node *next; }PolyNode,*LinkList; //--------------建立一元多项式-------------// LinkList Create_LinkList() { LinkList head; 立即下载