摘要: #include #include #define STACK_INIT_SIZE 100 #define stackIncrement 10typedef struct{ int* base; int* to... 阅读全文
posted @ 2019-08-15 18:09 昨夜昙花 阅读(7) 评论(0) 推荐(0)
摘要: #include #include typedef struct poly{ int a; int m; struct poly *next; }polynomial;//初始化链表头节点polyno... 阅读全文
posted @ 2019-08-15 16:24 昨夜昙花 阅读(18) 评论(0) 推荐(0)