上传者: zhangzengsheng
|
上传时间: 2022-03-22 20:03:00
|
文件大小: 2KB
|
文件类型: -
数据结构实验《一元多项式》
#include
typedef struct node
{
float coef;
int exp;
int flag;
struct node *next;
}PolyNode,*LinkList;
//--------------建立一元多项式-------------//
LinkList Create_LinkList()
{
LinkList head;