搜索资源列表
Polynominal
- 单链表建立多项式类,实现多项式乘法与加法运算-Polynomial to establish a single list categories, the achievement of polynomial multiplication and addition operations
Polynomial
- 使用链式存储实现一元多项式的以下运算: 实现多项式的加法、减法、求导。 -Used to achieve a dollar store chain polynomial of the following operations: the realization of polynomial addition, subtraction, derivation.
Poly1
- 实现一个多项式加法,用VC++开发,用户输入两个多项式,实现加法,求导等运算。-The realization of a polynomial addition, using VC++ development, user input of two polynomials, to achieve additive, such as computing derivation.
PolyAdd
- 给定两个多项式P(x)与Q(x),通过链表实现它们的加法。ACM程序设计练习题。-Given two polynomials P (x) and Q (x), through the realization of their additive list. ACM Programming Exercises.
Linklist
- 用链表实现一元多项式的加法运算...有不足处,大家指点哦-Unary polynomial using linked list implementation of the addition operation ... there are deficiencies, we pointing oh ...
add
- 实现多项式的加法 输入两个多项式长度 幂次 底数 就可实现加法-To achieve polynomial addition input power times the length of two polynomials can be achieved base addition
lianbiao
- 用单链表实现多项式的加法运算,其中没有迭代器-Polynomial with a single linked list to achieve the addition operation, which is not an iterator
duoxiangshi
- 从键盘上随意输入两个多项式可以实现其加法、减法和乘法的运算。-Random input from the keyboard, the two polynomials can achieve their addition, subtraction and multiplication.
Ployn
- java实现多项式加法,乘法,除法,利用辗转相除法求两个多项式的最大公因子-java achieve polynomial addition, multiplication, division, using Euclidean algorithm for greatest common divisor of two polynomials
Devc
- 、一元多项式的加法、减法、乘法的实现 【问题描述】 设有一元多项式Am(x)和Bn(x),   Am(x)=A0+A1x1+A2x2+A3x3+… +Amxm   Bn(x)=B0+B1x1+B2x2+B3x3+… +Bnxn   请实现求M(x)= Am(x)+Bn(x)、M(x)= Am(x)-Bn(x)和M(x)= Am(x)×Bn(x)。 【基本要求】 首先判定多项式是否稀疏; 分别采用顺序和动态存储结构实现; 结果M(x)中
Homework1
- 多项式加法与乘法 可以进行一元函数的多项式加法与乘法-Polynomial addition and multiplication
polynomials
- 计算两个多项式的加法,减法以及乘法,多项式的通过链表存储。-Calculation of two polynomials of addition, subtraction, and multiplication, and polynomial linked list storage.
polynomialeditor
- 主要实现数据结构中的多项式编辑器演示程序, 具有加法\减法\乘法\除法的功能, 能够合并同类项-Polynomial data structure editor demo program with the addition \ subtraction \ Multiplication \ division of function, capable of combining like terms
Polynomial-Sum
- C++实现的多项式加法、减法、乘法,应用运算符重载-Realized C++ polynomial addition, subtraction, multiplication, operator overloading
HW1
- 通过用C语言实现两个多项式的加法,输入通过文件读入-C language implementation of two polynomials addition, input file is read into
8-2
- 以链表的方式存储多项式,并实现多项式的加法,减法和乘法操作-Stored in a linked list polynomials and polynomial addition, subtraction and multiplication operations
Experiment1
- 多项式加法 多项式加法 这是压缩文档-Polynomial addition
1
- 设计一个一元稀疏多项式加法运算器,完成多项式a和b相加,建立多项式a+b。-Design a one yuan sparse polynomial adder, complete polynomials a and b are added, the establishment of polynomial a+ b.
EightQueen
- 数据结构中进行多项式加法的详细代码程序,运行环境为vc6-Data structure polynomial addition detailed code program, the operating environment for the vc6
assignment1
- 【问题描述】 设计一个实现一元稀疏多项式相加运算的演示程序。 【基本要求】 (1)输入并建立两个多项式; (2)多项式a与b相加,建立和多项式c; (3)输出多项式a,b,c。输出格式:比如多项式a为:A(x)=c1xe1+c2xe2+…+ cmxem,其中,ci和ei分别为第i项的系数和指数,且各项按指数的升幂排列,即0≤e1<e2<…<em。多项式b,c类似输出。([descr iption of the problem]