順序表應用之兩個一元多項式求和

#include <stdio.h> #include <malloc.h> typedef struct node{ int coef;//係數 int exp;//指數 struct node *next; }NODE; NODE *creatPoly(){ int coef; int exp; NODE *head,*tail,*s;//
相關文章
相關標籤/搜索