- 博客(1)
- 问答 (3)
- 收藏
- 关注
原创 一元稀疏多项式加法计算器——C语言实现
#include <stdio.h> #include <stdlib.h> #define OK 1 #define ERROR 0 typedef int ReturnValue; typedef struct Polynode { float coef; // 系数 int exp; // 指数 struct Polynode* next; }Polynode, * Polylist; //输入数据, 边输入边排序进链表 ReturnValue InputDataA
2020-07-18 18:46:10
3262
1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人