原创 數據結構多項式加法

typedef struct { int Matrix; //係數 int Order; //階 }Item; //多項式的項 typedef struct { Item item[MAXSIZE]; int le