数据结构——两个一元多项式之和

#include<stdlib.h> #include<stdio.h> struct List{ int coef;//系数 int expn;//幂 struct List * next; }; typedef struct List * Link; typedef struct List Lnode; /*建立链表*/ Link create() { int a, n, i =
相关文章
相关标签/搜索