數據結構第二章線性表---課後習題

P26多項式加法的運算: 線性表的應用,兩個多項式相加。node /*線性表的應用,多項式相加. 假設線性表已經降序排列.*/ #include<iostream> using namespace std; typedef int ElemType; typedef int Status; typedef struct node{ int coef; //係數 int exp;
相關文章
相關標籤/搜索