摘要: 阅读全文
posted @ 2016-09-27 23:21 佩喻幻 阅读(220) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; struct Node { double coe; //系数 int exp; //指数 Node *next; }; void CreatPoly(Node *&head, int n) // 生成带表头结点的单链表 阅读全文
posted @ 2016-09-27 23:08 佩喻幻 阅读(8435) 评论(0) 推荐(0) 编辑