搜索资源列表
yuanduoxiangshi.cpp
- 一元多项式的加减算法,并有比较有好的界面!
duoxiangshijisuan
- 一元多项式计算,适用于C语言的教学研究及课程设计的应用
c
- 一元多项式的求积,可以给学生用,平时交作业。-One dollar polynomial quadrature, can give students, usually交作业.
shujujiegou
- 用C++做的数据结构课程设计,内含三个项目,项目一 牛顿迭代法的数据结构,项目二 一元多项式计算,项目三 民航订票系统-Done using C++ data structures curriculum design, containing three items, the project of a Newton iteration of the data structure, project 21 yuan polynomial terms, the three civil aviation
shiyan2
- 求一元n次多项式的值 一个n次多项式如: 其中 被称为系数。在本题中使用LinkedList类,其数据记录项Term中包含每一项的系数 及x的幂次。 struct Term { double coeff int power } 在程序中以(系数、幂次)对的序列输入一个多项式。在输入的幂次为0时终止程序,将每对系数/幂次存储到按幂次排序的链表中。 (a)按以下形式输出结果多项式中的每一项 ai*x^
1
- 一元多项式的加减法一元多项式的表示问题:对于任意一元多项式: n(x)= P0+ P1X1+ P2X2+ … + PiXi+ … + PnXn 可以抽象为一个由“系数-指数”对构成的线性表,且线性表中各元素的指数项是递增的: P=( ( P0,0), ( P1,1), ( P2,2), … , ( Pn,n) ) -Add and subtract one yuan polynomial