/*
Author:skysys
School:NCEPU
*/
#include<bits/stdc++.h>
using namespace std;
typedef struct{
float coef;
int exp;
}Term;
数据结构作业 用链表实现多项式运算
最新推荐文章于 2022-12-05 21:07:40 发布
/*
Author:skysys
School:NCEPU
*/
#include<bits/stdc++.h>
using namespace std;
typedef struct{
float coef;
int exp;
}Term;