數據結構——兩個一元多項式之和

#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 =
相關文章
相關標籤/搜索