随笔分类 -  数据结构

摘要:多项式乘法是在多项式加法的基础上完成的。 1、多项式加法 1 #include<iostream> 2 using namespace std; 3 typedef struct lnode{ 4 int coef; 5 int exp; 6 lnode *next; 7 }lnode; 8 cla 阅读全文
posted @ 2023-04-01 17:00 SpringBridge 阅读(111) 评论(0) 推荐(0)