摘要: #include #include typedef struct node * polynomial; struct node { int coef; //系数 int index; //指数 polynomial next; }; //读取函数 polynomial ReadPolynomial() { polynomial ... 阅读全文
posted @ 2018-03-24 10:12 禹某 阅读(302) 评论(0) 推荐(0) 编辑