无语大碗

文章
5
资源
0
加入时间
3年1月29天

用线性表实现一元多项式的加法

#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 *