搜索资源列表
程九思--一元稀疏多项式计算器
- 程九思--一元稀疏多项式 计算器.doc程九思--一元稀疏多项式计?闫?doc程九思--一元稀疏多项式计?闫?doc程九思--一元稀疏多项式计?闫?doc程九思--一元稀疏多项式计算器.doc计算器.doc
数据结构一元多项式报告
- 数据结构一元多项式报告
duoxiangshi
- 多项式相乘一元稀疏多项式简单计算器的基本功能是: (1)输入并建立多项式; (2)输出多项式,输出形式为整数序列:n,c1,e1,c2,e2,...,cn,en,其中n是多项式的项数,ci和ei分别是第i项的系数和指数,序列按指数降序排列。 (3)多项式a与多项式b相乘,建立多项式。 -Sparse polynomial multiplication unary polynomial basic functions of the calculator is simple:
multiplication
- 说明:此代码是能实现一元多项式相乘的一个函数,请大家批评指导!-One of the polynomial multiplication
poly
- 数据结构中,线性表的应用,利用单链表存储一元多项式,并实现单链表表示与相加操作-The data structure, the linear form of the application, the use of a single linked list is stored one dollar polynomial, and to achieve a single linked list representation and the sum of operating
duoxiangshi
- C语言的数据结构课设_一元多项式的运算包含加减乘除-C language data structures course _ a dollar-based polynomial multiplication and division operations include addition and subtraction
kechengsheji
- 一元稀疏多项式简单计算器 停车场系统图形界面 停车场模拟-a easy title
text
- 问题描述:有两个指数递减的一元多项式,写一程序先求这两个多项式的和,再求它们的积。-Problem Descr iption: the two exponential decline polynomial, write a program to seek first two polynomials and then seek their product.
1
- 将两个一元n次多项式相加,并输出相加后的新的一元n次多项式 (1) 从input.txt文件读入一元多项式的系数和指数,用尾插法建立一元多项式的链 表。 (2) 以输入系数0为结束标志。 (3) 并约定建立多项式链表时,总是按指数从小到大的顺序排列。 (4) 要求借鉴第一章课件中给出的编程思路,一元多项式链表采用带头结点的单链表 实现。-The two one yuan polynomial of degree n, and outputs the added new o
poly
- 运用c++来实现实系数一元多项式简单的四则运算-Use c++ to achieve a polynomial with real coefficients of the four simple arithmetic
one
- 实现 一元稀疏多项式简单计算器,比如2x1+3x1=5x1 -Achieve one yuan sparse polynomial simple calculator, such as 2x1+ 3x1 = 5x1
MapPloynomial
- C++实现一元多项式的运算,使用链表、映射等高级stl技术-C++ map list
一元多项式的运算
- 利用c语言实现的一元多项式的运算。程序能够完成如下功能:(1)创建多项式;(2)打印显示多项式;(3)销毁多项式;(4)复制多项式;(5)求两个多项式的和;(6)求两个多项式的差;(7)求两个多项式的积;(8)求一个多项式的n次幂;(9)计算一个多项式在x=a处的值;(10)退出。