网站首页
编程语言
数据库
系统相关
其他分享
编程问答
POLY2
2025-01-07
链表实现多项式的相加相减以及修改指定指数系数
#include<iostream>usingnamespacestd;//定义多项式节点结构typedefstructPolyNode{intcoaf;//系数intexpn;//指数structPolyNode*next;//指向下一个节点的指针}PolyNode,*Poly;//创建多项式节点PolycreateNode(intcoaf,inte