搜索资源列表
多项式求和
- 1、 程序功能:本程序实现多项式的求和运算,在遇到指数相同时实行系数相加或相减,指数不同的照原样输出。最后分别输出系数和指数。 2、 运行环境:C++ 3、 算法描述:首先,把输入的的多项式进行分析,把所有的系数放入一个单链表中llist,指数放入另一个单链表llist2中。然后再在指数链表中比较有没有相同的指数,如果有相同的指数,那就把相对应的系数进行求和,并把求和结果归并到llist2中;如果指数不相等的,就直接归并到llist2中。最后以指数的降幂形式输出。
dxs
- 设计一个可进行多项式运算的演示程序。程序执行的命令包括:(1)生成多项式。(2)打印多项式(积分的打印做特殊情况处理)3)两个多项式求和。(4)两个多项式求差。(5)对多项式求积分。(6)对多项式求微分-design can be a polynomial of Operational Demonstration Program. Procedures for the implementation of the order, including : (a) generating polynomi
polysum
- 多项式求和计算的程序-polynomial SUMMATION procedures
c
- 大灰狼和小白兔 大数的乘法 多项式求和 浮点取整
MyPoly
- 多项式求和的计算,多项式求和的计算 多项式求和的计算-The Plus of Poly
sum
- 一个比较快速和简便的多项式求和程序,功能强大-multinomial polynomial quantic
dxs
- 多项式求和的C++源程序,学习数据结构(C++描述)-Polynomial sum of C++ source code, study the data structure (C++ descr iption)
polynomial
- 本代码是用四种不同的算法来实现多项式求和。-This code is used four different algorithms to achieve polynomial sum.
polyn
- 一元多项式求和,可以实现一元多项式的插入、删除、有序插入和相加-failed to translate
PolyList
- 利用链表,类和对象,实现简单的多项式求和功能。-Polynomials using linked list of simple summation function.
YiYuanDuoXiangShi
- 1.一元多项式相加(10分) 题目说明: 编写一元多项式加法运算程序。要求用线性链表存储一元多项式(参照课本)。该程序有以下几个功能: 1. 多项式求和 输入:输入三个多项式,建立三个多项式链表Pa、Pb、Pc (提示:调用CreatePolyn(polynomial &P,int m)。 输出:显示三个输入多项式Pa、Pb、Pc、和多项式Pa+Pb、多项式Pa+Pb+Pc (提示:调用AddPolyn(polynomial &Pa, polynomial Pb
qiuhe
- 多项式求和,用链表实现的一元多项式求和程序,比较 靠谱-Polynomial sum, with the linked list implementation of a polynomial summation procedure, more reliable
yiyuanduoxiangshi
- C/C++链表构造一元多项式求和.数据结构,学习数据结构的重要代码-In C/C++ linked list construct a polynomial sum of data structures, learning data structures code
ha
- 多项式求和 链表的应用,哈工大第一次数据结构实验-Polynomial summation linked list application, HIT data structure first experiment
PolyArith
- 数据结构乘客设计案例精编中的多项式求和、相乘-Data structures passengers for fine design cases polynomial sum, multiplied
polyn
- 一个多项式计算器,能计算多项式的值,对多项式求和差积商余,积分微分,等小功能,是中科大顾为滨老师的作业题,界面友好,容错性好-A polynomial calculator can calculate the value of the polynomial USTC Gu Bin teacher job title, the polynomial summation poor plot I, integral-derivative, and other small, friendly inter
Experimental-data-structure
- 数据结构的一些基本实验,包括多项式求和,后缀表达式求解,稀疏矩阵,循环队列的实现等,可以对刚开始学习数据结构的学生有很大的帮助-Some of the basic structure of the experimental data, including polynomial summation, postfix expression solving sparse matrix, the realization of the circular queue students just beginn
线性表操作
- 对线性表的一些操作,有一元多项式求和运算和Josephus环。参考《数据结构(java版)第4版》,内有题目文档。(Some operations on the linear table, there is a unary polynomial summation operations and Josephus ring. Refer to the data structure (Java Edition) Fourth Edition, there are Title documents.)
-一元多项式的求和
- 一元多项式求和,面向对象程序设计,课程设计作业(It's about sum of unary polynomials and object oriented programming,It's my homework about .curriculum design.)
1
- 浙大算法竞赛的一道题目,多项式求和。本程序给出了它的简单实现以及标准答案。(A problem of Zhejiang University algorithm competition, polynomial summation. This program gives its simple implementation as well as the standard answer.)