- 博客(2)
- 收藏
- 关注
原创 多项式运算C语言代码,加法,减法,求导,根据严慰敏书上算法所写
#include<stdlib.h> #include<stdio.h> #include<malloc.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 typedef struct Polynode { int coef;//系数 int exp;//指数 ...
2018-10-04 03:34:48 528
原创 数据结构,链表的应用-多项式相加相减运算
#include<stdio.h>#include<malloc.h>#include<stdlib.h>#define true 1#define false 0typedef struct duoxiangshi{ float xishu; //系数 int zhishu; //指数 struct duoxiangshi *next;}test;voi...
2018-03-10 16:44:11 770
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人