Welcome![Sign In][Sign Up]
Location:
Search - Polynomial-multiplication

Search list

[ELanguagethe-polynomial-Editor

Description: 数据结构,多项式编辑器,其基本功能 1. 创建 2. 显示 3. 复制 4. 求和 5. 求差 6. 求值 7. 销毁 8. 清空 9. 修改(①插入新的结点、②删除已有结点、③修改已有结点的系数和指数) 拓展功能(选做): 10. 微分(N阶导数) 11. 不定积分 12. 定积分 13. 乘法和乘方 14. 除法 15. 最大公约式和最小公倍式 16. 多项式的四则运算(如 “(1+2*3)/4”)-Basic functions (will do): Create 2 display 3. Copy 4. Summation 5 differencing 6. Evaluation 7. Destroyed 8 Empty 9. Modification (① insert a new node, ② delete the existing junction point, ③ modify an existing node coefficient and exponent) expansion function (Optional): 10. Differential (N derivative) 11. Indefinite Integral 12. definite integral 13. multiplication and involution 14. division 15 largest convention-style and the least common multiple 16. polynomial arithmetic (such as " (1+2* 3)/4" )
Platform: | Size: 3072 | Author: YLY | Hits:

[Otherp5

Description: 【问题描述】 编写一个程序实现两个一元多项式相乘。 【输入形式】 首先输入第一个多项式中系数不为0的项的系数和指数,以一个空格分隔。且该多项式中各项的系数均为0或正整数,系数和最高幂次不会超过int类型的表示范围。对于多项式 anxn +a n-1 x n-1 + … + a1x1 + a0x0 的输入方法如下: an n a n-1 n-1 … a1 1 a0 0 即相邻两个整数分别表示表达式中一项的系数和指数。在输入中只出现系数不为0的项。最后一项的指数后没有空格,只有一个回车换行符。 按照上述方式再输入第二个多项式。 【输出形式】 将运算结果输出到屏幕。将系数不为0的项按指数从高到低的顺序输出,每次输出其系数和指数,均以一个空格分隔,最后一项的指数后也可以有一个空格。 【样例输入】 10 80000 2 6000 7 300 5 10 18 0 3 6000 5 20 8 10 6 0 【样例输出】 30 86000 50 80020 80 80010 60 80000 6 12000 21 6300 10 6020 31 6010 66 6000 35 320 56 310 42 300 25 30 130 20 174 10 108 0-The realization of the two one yuan polynomial multiplication
Platform: | Size: 1024 | Author: 林明 | Hits:

[Data structspolynModel

Description: 实现一元稀疏多项式的如下运算:(1)两个一元稀疏多项式相加运算(2)两个一元稀疏多项式相减运算(3)两个一元稀疏多项式相乘运算-Realize one yuan sparse polynomial arithmetic as follows: (1) two one yuan sparse polynomial arithmetic (2) two one yuan sparse polynomial subtraction of (3) two one yuan sparse polynomial multiplication
Platform: | Size: 3072 | Author: 宋song | Hits:

[Data structsmultiplication

Description: 要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。-Require the use of a linked list, find the product of two one yuan polynomial: h3 = h1* h2. Function prototype: void multiplication (NODE* h1, NODE* h2, NODE* h3).
Platform: | Size: 1024 | Author: qiang22 | Hits:

[Othera

Description: 标题: 多项式加减乘 时 限: 5000 ms 内存限制: 8000 K 总时限: 10000 ms 描述: 多项式加减乘 有A,B,C…… n 个关于x的个多项式,求一个关于A,B,C……的多项式的结果 多项式的每一项之间用空格隔开,每一项的系数,x,指数之间也用空格隔开,系数为0的项不输出 输入: 基于多项式A,B,C……的运算表达式 关于x的多项式A 关于x的多项式B 关于x的多项式C … 输出: 表达式的运算结果 含有A,B,C……表达式的运算结果,保留两位小数。 输出多项式表达式按指数降序排序 输入样例: (A+B)*(A-B) A 1 x 2.1 3 x -3.09 B 2 x 1 2 x 0 输出样例: 1.00 x 4.20 -4.00 x 2.00 -8.00 x 1.00 -4.00 x 0.00 6.00 x -0.99 9.00 x -6.18 -Title: polynomial multiplication and subtraction Time limit: 5000 ms Memory Limit: 8000 K Total time: 10000 ms Description: polynomial multiplication and subtraction There are A, B, C ...... n a polynomial with respect to x, find a polynomial results for A, B, C ...... s Each separated by a space between polynomials, each coefficient, also separated by a space between x, index, coefficient of entry 0 is not output Input: Based on the polynomial A, B, C ...... arithmetic expression A polynomial in x About polynomial x B C on the polynomial x ... Output: The result of the expression Operation result A, B, C ...... expression contained two decimal places. The output index sorted in descending order polynomial expressions Input Sample: (A+ B)* (A-B) A 1 x 2.1 3 x-3.09 B 2 x 1 2 x 0 Sample output: 1.00 x 4.20-4.00 x 2.00-8.00 x 1.00-4.00 x 0.00 6.00 x-0.99 9.00 x-6.18
Platform: | Size: 16384 | Author: dandan | Hits:

[Data structspolynomials

Description: 用单链表作为存储结构,实现多项式的乘法与加法- As a single linked list storage structure, polynomial multiplication and addition
Platform: | Size: 5120 | Author: 王雅 | Hits:

[File FormatSHUJUJIEGOU

Description: 表达式求值、多项式相乘的详细代码、运行结果截图及详细说明-Expression, detailed code polynomial multiplication, the results screenshots and a detailed description
Platform: | Size: 39936 | Author: Tina | Hits:

[Data structspoly_product

Description: 数据结构多项式乘法算法设计,分解,高效,合并-Data structures polynomial multiplication algorithm design, decomposition, efficient merger
Platform: | Size: 1024 | Author: 徐建洲 | Hits:

[ELanguageduoxiangshi

Description: 构造两个多项式,用户可以根据显示界面来完成多项式的加减乘运算-Construction of two polynomials, complete polynomial multiplication and subtraction
Platform: | Size: 169984 | Author: 王浩天 | Hits:

[Windows Developpolynominal

Description: 多项式相乘,堆栈的使用,指针,单循环链表,多项式的输出转换,多项式的加法变形。-Polynomial multiplication, the use of a stack pointer, single linked list, the output of the polynomial transformation, polynomial addition deformation
Platform: | Size: 2048 | Author: eric李 | Hits:

[Internet-Networklinear-list-

Description: 一元多项式的表示,一元多项式的加法,一元多项式求导,两个一元多项式的乘法。-One yuan polynomial representation of one yuan polynomial addition, one yuan polynomial derivation, two one yuan polynomial multiplication.
Platform: | Size: 235520 | Author: | Hits:

[VC/MFClianxi3

Description: 主要功能为:用链表实现多项式的相乘运算,运算方便,准确-List realize polynomial multiplication
Platform: | Size: 520192 | Author: chengyang | Hits:

[OS programaaa

Description: 实现一元多项式的乘法与加法,满足人们在运算中对多项式运算的需求-Achieve one yuan polynomial multiplication and addition, to meet the demand for polynomial operations In operation
Platform: | Size: 1024 | Author: 侯舟帆 | Hits:

[Data structsPolynomial

Description: 本程序采用c/c++实现一元多项式的加法、减法和乘法运算,利用数据结构中的顺序存储方式和链式存储方式实现,程序在vs2013中编译通过,本压缩包是vs2013的项目文件,包含编译成功的可执行文件exe和源代码。-This program uses c/c++ to realize the addition, subtraction and multiplication of the data structure, the use of data structure in the order of storage and chain store mode, the program compiled in vs2013 through, the compression package is the vs2013 project file, including the compilation of the success of the EXE and source code.
Platform: | Size: 3707904 | Author: | Hits:

[SCMpolynome

Description: 多项式相乘的两种算法:直接相乘,分治法相乘-Polynomial multiplication of two algorithms: Direct multiply, multiply divided Act
Platform: | Size: 2048 | Author: ajigl748 | Hits:

[Special EffectsPolynomial100

Description: 多项式的乘法运算和修改循环表为单链表,这是cpp文件,用于学校实验报告用-Polynomial multiplication table and modify the circulation as a single list, which is the cpp file, Experimental report for schools
Platform: | Size: 2048 | Author: adu0g751 | Hits:

[Otherrs

Description: 实现rs编码和译码,以及实现rs编码和译码中的一些韩式,比如加法函数,减法函数和乘法函数以及乘法的多项式函数-Achieve rs encoding and decoding, as well as to achieve rs encoding and decoding of some Korean, such as the addition function, subtraction and multiplication functions and functions of polynomial multiplication
Platform: | Size: 3072 | Author: 幽灵 | Hits:

[CSharpFamilyTree

Description: 多项式的应用 对多项式的生成显示进行加减乘运算和求值求导-Polynomials- generating polynomial multiplication and subtraction display uated derivative
Platform: | Size: 7109632 | Author: 黄广杰 | Hits:

[Consolepolynomial-calculator

Description: c++完成的多项式计算器,可以完成加法,减法,乘法,求积分等操作-c++ completed polynomial calculator can be completed addition, subtraction, multiplication, integration and other operations
Platform: | Size: 515072 | Author: 李念 | Hits:

[matlabmultdemo

Description: 多项式的乘法电路matlab演示,可以增强理解信道编码中的多项式乘法。含有界面编程,可以作为学习界面编程的例子。-Polynomial multiplication circuit matlab demo, can enhance the understanding of channel coding polynomial multiplication. Contains programming interface, the interface can be used as learning programming examples.
Platform: | Size: 23552 | Author: xingang | Hits:
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 16 »

CodeBus www.codebus.net