用线性表实现一元多项式的加法
#include <stdio.h>#include <stdlib.h>#include <iostream>using namespace std;struct monomial {//单项式 int exponent;//指数 float coefficient;//系数};struct node { monomial m; struct node *next;};typedef struct node *