数据结构第二章线性表---课后习题

P26多项式加法的运算: 线性表的应用,两个多项式相加。node /*线性表的应用,多项式相加. 假设线性表已经降序排列.*/ #include<iostream> using namespace std; typedef int ElemType; typedef int Status; typedef struct node{ int coef; //系数 int exp;
相关文章
相关标签/搜索