摘要: 利用链表实现一元多项式的加法和乘法#define null 0#include "stdio.h"#include "stdlib.h"#include "math.h"int op;typedef struct{ float coef;//系数 int expn;//指数 }t... 阅读全文
posted @ 2015-10-13 21:38 非我非非我 阅读(1967) 评论(0) 推荐(0)
摘要: Warm upTime Limit: 10000/5000 MS (Java/Others)Memory Limit: 65535/65535 K (Java/Others)Total Submission(s): 5093Accepted Submission(s): 1131Problem De... 阅读全文
posted @ 2015-10-13 14:16 非我非非我 阅读(225) 评论(0) 推荐(0)