CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - 一元多项式计算

搜索资源列表

  1. Unary-polynomial-operations-(list)

    0下载:
  2. 利用单链表实现一元多项式的加、减、乘法,含有开辟多项式所需空间、判断用户输入正确与否、构造节点存放多项式系数和指数、构造多项式、多项式整理(按指数从小到大存放)、撤销多项式所在节点、合并同类项、多项式加法、多项式减法、多项式乘法、多项式长度计算等。-Using a single linked list to achieve a polynomial addition, subtraction, multiplication
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:85839
    • 提供者:Mr Li
  1. yiyuanduoxiangshiyunsuan

    0下载:
  2. 此程序使用C++的语言计算一元多项式的加减乘运算,并且有界面-This program uses the language of C++ addition and subtraction calculation of a polynomial multiplication, and there are interfaces
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:10121
    • 提供者:冯小帆
  1. Programs

    0下载:
  2. 数值分析算法,密码Jacobi符号计算,数据结构中二叉树判定及一元稀疏多项式计算。-Numerical analysis algorithms, password Jacobi symbol calculations, the data structure sparse binary polynomial to determine and calculate a dollar.
  3. 所属分类:Algorithm

    • 发布日期:2017-04-08
    • 文件大小:10560
    • 提供者:郭旭阳
  1. project1

    0下载:
  2. C++写的两个一元多项式的计算,包括加法、减法-C++ to write two one-polynomial calculations, including addition, subtraction
  3. 所属分类:Algorithm

    • 发布日期:2017-05-02
    • 文件大小:902177
    • 提供者:Wendy
  1. 084221033

    0下载:
  2. 一元多项式计数器 基本要求: (1)输入并建立多项式; (2)输出多项式:n, c1, e1, c2, e2, …cn , en, 其中,n是多项式项数,ci和ei分别是第 i 项的系数和指数,序列按指数降序排列。 (3)两个多项式相加、相减、相乘、相除; (4)计算多项式在x处的值; (5)求多项式的导函数。 -Unary polynomial counter basic requirements: (1) input and the establishme
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-07
    • 文件大小:3260
    • 提供者:yy
  1. include1

    0下载:
  2. 多项式计算(单向链表的应用) 设计要求:设计处理n次一元多项式P(x) = a0 + a1x + a2x2 + … + anxn,多项式实际上包含n+1项,由n+1个系数唯一确定。为了节省存储空间,只存储多项式中系数非0 的项。运用链表中的每一个结点存放多项式的一个系数非0项,它包含三个域,分别存放该项的系数、指数以及指向下一项结点的指针,来对其进行相应的处理(某一多项式根据x求值、多个同元多项式处理等等)。 -Polynomial calculations (one-way link
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-25
    • 文件大小:7838
    • 提供者:张烨
  1. poly-cacu

    0下载:
  2. 本题要求实现对两个多项式的简单计算,实验要求完成一元多项式以及多元多项式的四则运算,计算后能将结果输出。 对于多项式,它由系数,未知元以及指数组成,考虑到它包括的属性较多,故链表是一种非常不错的选择。题目有两个关键点:第一、识别多项式每一项的系数与指数;第二、对结果能很好的合并同类项。 解题方法:链表实现,多项式指数系数识别,加减乘除等四则运算分别模拟笔算的过程。多元多项式增加指数数组,方法与一元相似。 -This question required to achieve a sim
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-02
    • 文件大小:4063
    • 提供者:何东标
  1. sum

    0下载:
  2. 一元多项式的计算代码,是C++初学者的宝典,希望对大家有帮助。-the C++,sum of the yi yuan duoxiangshi.
  3. 所属分类:Data structs

    • 发布日期:2017-04-15
    • 文件大小:6206
    • 提供者:王小贱
  1. Linear-table-application

    0下载:
  2. 线性表应用多项式计算.用C或C++语言设计并实现一个一元稀疏多项式的简单计算器。 一个稀疏多项式简单计算器的基本功能是: 1. 输入并建立多项式。 2. 输入多项式,序列按指数降序排列。 3. 多项式A(x)和B(x)相加,并建立多项式A(x)+B(x)。 4. 多项式A(x)和B(x)相减,并建立多项式A(x)-B(x)。 5. 给定x的值,计算多项式。 -Linear table application polynomial calculation
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:22612
    • 提供者:zhangquan
  1. polynomial-calculation

    0下载:
  2. 解决数据结构中一元稀疏多项式计算的代码,已经调试通过-Solve a yuan sparse data structure calculation of polynomial code, have debugging through
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1007
    • 提供者:shu
  1. poly

    0下载:
  2. 一元多项式A = anxn + … + a1x + a0, B = bnxn + … + b1x + b0,根据运算符+、-、*,分别计算A + B、A - B、A * B。-A polynomial A = anxn+ ...+ a1x+ a0, B = bnxn+ ...+ b1x+ b0+ operator,-,*, respectively, to calculate the A,+ B, A- B, A* B.
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:993
    • 提供者:童浩
  1. poly_calculate

    0下载:
  2. 一元多项式求值。用户根据提示输入多项式的最高次数n,变量x的值,以及各个参数;由程序计算多项式的值并将结果输出 -A polynomial evaluation. Follow the prompts to enter the polynomial maximum number of times n, the value of the variable x, and each parameter computing polynomial values ​ ​ and t
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:27496
    • 提供者:wwz
  1. yuanma

    0下载:
  2. joseph环 猴子选大王 一元多项式的计算 原码-joseph the ring monkey election king one yuan polynomial to calculate the original code
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-12-08
    • 文件大小:4262
    • 提供者:张志刚
  1. cPP

    0下载:
  2. 一元多项式的计算,(1)输入并建立多项式; (2)输出多项式; (3)两个多项式相加,建立并输出和多项式;如:(x+10)+(2x+5)=3x+15 (4)两个多项式相减,建立并输出差多项式。如:(x+10)-(2x+5)=-x+5 -One yuan polynomial calculation, (1) the input and the establishment of a polynomial (2) polynomial output (3) two polynom
  3. 所属分类:source in ebook

    • 发布日期:2017-12-04
    • 文件大小:2347
    • 提供者:刘振
  1. polynomial-calculation

    0下载:
  2. 用C语言编写的一元稀疏多项式计算,包括加减乘三种计算类型-Written in C language, one yuan sparse polynomial, including addition and subtraction multiplication three types of calculations
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-16
    • 文件大小:185544
    • 提供者:TsaiCai
  1. yunsuan

    0下载:
  2. (1)输入并建立一元多项式 (2)输出一元多项式 (3)多项式实现相加、相减及相乘 (4)输入多项式中的未知数,计算多项式的结果-(1) the input and the establishment of a polynomial (2) output a polynomial (3) to achieve additive, subtraction and multiplication of polynomials (4) the input polynomial o
  3. 所属分类:ELanguage

    • 发布日期:2017-11-26
    • 文件大小:33292
    • 提供者:wh
  1. PolynomialPlus

    0下载:
  2. 进行一元多项式合并,按照提示输入两个一元多项式,然后把合并结果计算并输出到命令窗口-To a polynomial merged two polynomial prompted, enter, and then merge the results are calculated and output to the command window
  3. 所属分类:VOIP program

    • 发布日期:2017-11-14
    • 文件大小:908
    • 提供者:岩石
  1. 1-1

    0下载:
  2. 一元多项式的计算-One yuan polynomial calculations. . . . . . . . . . . . . . . .
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-13
    • 文件大小:2440
    • 提供者:xfl
  1. yiyuanduoxiangshi

    0下载:
  2. 一元多项式的建立以及加减乘除元算。输入多项式a和b;2)建立多项式a+b 3)建立多项式a-b;4)计算多项式a的值;5)建立多项式a*b;6)重新建立多项式a和b;7)退出。-The establishment of one yuan polynomial computation as well as addition, subtraction, multiplication, and division
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:29245
    • 提供者:maliang
  1. 123456

    0下载:
  2. a) 设有n个人围坐在一个圆桌周围,现从第s个人开始报数,数到第m的人出列,然后从出列的下一个人重新开始报数,数到第m的人又出列,如此反复直到所有的人全部出列为止。Josephus问题是:对于任意给定的 n、s、m,求出按出列次序得到的n个人员的序列。试在计算机上模拟Josephus问题的求解过程。 b) 利用线性表实现一元多项式的相加、相减操作。 -very very easy
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:58848
    • 提供者:新宇
« 1 2 34 »
搜珍网 www.dssz.com