搜索资源列表
duoxiangsih
- 1、 应用程序 直接可以实现多项式的各项操作。 2、 查看原代码VC++6.0打开“多项式\\poly88.dsp”或者用记事本打开“多项式\\poly88.cpp” 3、 代码简单说明: 本程序是一个工程文件包含了链式与顺序两种多项是处理方式: 链表存储结构:多项式类是polynomail,节点类是polynelem; 顺序存储结构:多项是结构体是Ploynomial,节点类是term。 4、 注:在运行应用程序\"多项式.exe\"时,在
polynomail
- 设计一个一元稀疏多项式简单计算机器 1. 本演示程序中,用户根据相应提示可以完成以下功能: (1) 输入并建立两个多项式; (2) 输出多项式,输出形式为整数序列:n,c1,e1,c2,e2,…… cn,en,其中n是多项式的项数,ci和ei分别是第i项的系数和指数,序列按照指数降序排列。 (3) 多项式Pa和Pb相加,建立多项式Pa+Pb (4) 多项式Pa和Pb相减,建立多项式Pa-Pb 2. 对一些特殊情况的说明:将0多项式设置为仅一项的多项式,其系
E15_8870
- 做多项式的减法subtratpolyn(polynomail *pa,polynomail *pb)时可不用重新写函数,可先对多项式的系数进行求反,然后调用加法函数addpolynmail(polynomail *pa,polynomail *pb);
Datastructsaa
- #include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针
Create_Polynomail
- 用于创建多项式并以符合我们习惯的方式显示。还提供了多项式相加的功能-it create a polynomail and display it in the way that satisfy our habite.additonally it provide the function to add two polynomails
polynomail
- 稀疏多项式 数据结构的 绿皮版的 希望有用-Sparse polynomial data structure version of the Green Paper seek to help
polynomail
- 此程序是运用遍历树的方式存储及显示多项式,仅供大家学习-This program is a way to store and display the polynomial using tree traversal, only for them to learn
polynomail
- 用堆栈实现了多项式相加的运算,有自己的见解-The stack is used to implement the polynomial addition calculations
多项式矩阵.doc
- A brief introduction of polynomail matrix