摘要: 该程序为用链表实现多项式的相加相乘 #include<stdio.h> #include<stdlib.h> #include<string.h> #define chunksize 8 #define null 0 typedef struct chunk{ char ch[chunksize]; 阅读全文
posted @ 2019-10-29 07:38 lcyok 阅读(245) 评论(0) 推荐(0)