摘要: #include <stdio.h> #include <stdlib.h> //稀疏多项式合并 typedef struct Pnode{ float coef; //系数 int expn; //指数 struct Pnode *next;//指针域 }PNODE,*Polynomial; // 阅读全文
posted @ 2022-07-15 11:27 kangobs 阅读(56) 评论(0) 推荐(0)