- 博客(1)
- 收藏
- 关注
原创 用线性表实现一元多项式的加法
#include <stdio.h> #include <stdlib.h> #include <iostream> using namespace std; struct monomial {//单项式 int exponent;//指数 float coefficient;//系数 }; struct node { monomial m; struct node *next; }; typedef struct node *poly...
2021-11-28 17:20:07
818
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人