摘要: #include #include #includeusing namespace std;struct Node { double coef; int expn; Node *next;};void CreatPolynomial(Node *&head, int n) ... 阅读全文
posted @ 2014-06-19 14:13 Jessica程序猿 阅读(620) 评论(0) 推荐(0) 编辑