摘要: #includeusing namespace std;#define Maxsize 100class Date{public: int date[Maxsize + 1]; /*存储时按照1到n下标存储,空出下标为0的位置*/};int mindsearch(Date&A, int k, int... 阅读全文
posted @ 2015-04-14 23:36 曹孟德 阅读(216) 评论(0) 推荐(0) 编辑
摘要: #includeusing namespace std;class poly{public: int coef; int expon; poly *next;};poly*input(); /*输入函数*/poly*attach(poly*... 阅读全文
posted @ 2015-04-14 22:28 曹孟德 阅读(684) 评论(0) 推荐(0) 编辑