(鏈表實現)寫出兩個一元多項式相加的算法

/*實驗2 3. 試寫出兩個一元多項式相加的算法。 用鏈表來存儲一元多項式,而且要在程序中驗證其功能實現。 此題的源程序保存爲2_e1.cpp */ #include<iostream> using namespace std; struct node { int co; //係數 int exp; //指數 struct node * next; }; node* Creat
相關文章
相關標籤/搜索