搜索资源列表
sam
- 设计一个一元多项式加法器:两个多项式相加,输出多项式并计算-One dollar design a polynomial adder: the sum of two polynomials, and calculate the output polynomial
1-1
- 实验内容: 设计一个一元多项式的简单计算器,其基本功能有:①输入并建立多项式;②输出多项式;③多项式相加;④多项式相减;⑤多项式的乘积(选作)。可利用单链表或单循环表实现。-Experiment content: the design of a one dollar a simple polynomial calculator, and its basic functions: ① the importation and the establishment of polynomials
poly
- 实现一元多项式的相加。 要求按指数降序输入两个多项式,然后程序可以完成对这两个多项式的相加-Polynomial realization of the sum of one dollar. Require exponentially descending input two polynomials, then the program can complete the sum of these two polynomials
polynomial-
- 一元多项式相加减 #include<stdio.h> #include<malloc.h> typedef struct polynode /*用单链表存储多项式的结点结构*/ { int coef int exp struct polynode *next }node-Unary polynomial-phase addition and subtraction# include <stdio.h># incl
calculator
- 一元多项式简单计算器实现一下基本功能: 1,输入并建立多项式 2,输出多项式,输出形式为整数序列:n,c1,e1,c2,c2,...,cn,en,其中n是多项式的项数,ci和ei分别是第i项的系数和指数 3,多项式a和b相加,建立多项式a+b 4,多项式a和b相减,建立多项式a-b. -Dollar sparse polynomial calculator.
Polynomial
- 一元多项式相加,输入两个一元多项式,输入的时候以系数和指数为特征值,输入完毕时以0,0结束-Polynomial the sum of one dollar, one dollar input two polynomials, when the input to coefficient and index for the characteristic value, enter the end of the conclusion to 0,0
duoxiangshi
- 用C++语言编写一段程序,该程序的功能相当于一个一元多项式计算器。它能够实现按照指数降序排列建立并输出多项式,并且能够完成两个多项式的相加、相减的运算和将其结果输入的功能。-C++ language with a program that functions as a unary polynomial calculator. It can be achieved in accordance with established and the output index in descending o
Polynomial
- 利用线性表实现一个一元多项式的以下功能:一元多项式的输入和输出;进行一元多项式相加;进行一元多项式相减;计算一元多项式在x处的值 -Linear form to achieve a unary polynomial of the following functions: a polynomial of the input and output to the sum of one dollar polynomial conducting a polynomial-phase reducti
002
- 一元稀疏多项式计算器,程序执行的命令包括:输入并建立多项式、输出多项式、多项式相加、减。-Unary sparse polynomial Calculator, program execution command include: input and establish polynomial, output polynomial, polynomial add, minus.
jisuanjiruanjianjishujichu
- 可以用于单链表实现一元多项式的相加,以便在计算时用到,这是单链表的基本类型。-Single linked list can be used to achieve a dollar sum of polynomial order used in the calculation, which is a single list of basic types.
yiyuanduoxiangshi
- 一元多项式的相加和相减,求值和求导,是一个简单而实用的小程序。-Sum of one dollar and subtraction of polynomials, find the value and derivative, is a simple and useful little program.
jisuanqi
- 一个一元多项式的计算器,功能包括 (1)输入并建立多项式(一个多项式最多不超过20项),可以从文件中读取相关数据; (2)输出多项式,输出形式可以是图形方式,也可以是文本方式; (3)实现两个多项式相加,并输出和多项式; (4)实现两个多项式相减,并输出差多项式; (5)实现两个多项式相乘,并输出乘积多项式; (6)计算并输出多项式在指定x处的值。-a multinomial ,arithmetic
084221033
- 一元多项式计数器 基本要求: (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
add
- 一元多项式的表示和相加的C++程序实现。-Polynomial representation and the sum of the C program.
Ploy
- 一元稀疏多项式相加相减(MFC)vc-MFC This procedure is a one dollar sparse polynomial calculator
Polynomial-add
- 数据结构的一道经典题目,是很好的源代码。一元多项式相加,用数组实现-Data structure a classic topic, is a good source code. One yuan polynomial using arrays to achieve
first
- 对一元多项式能实现输入、输出,以及两个一元多项式相加及结果显示。使用C语言实现链表的说明、创建以及结点的插入和删除等操作。-For a polynomial can achieve input, output, and two one yuan polynomial and the results displayed. Using C language descr iption of the list, create, and node insertion and deletion operat
chainStructurePolynomialAdd
- 一个在链式存储结构下的,解一元多项式相加的小程序,以C++实现。-A storage structure in the chain, the solution of a polynomial adding a small program to C++ implementation.
多项式
- 一个一元稀疏多项式简单计算器。输入并建立多项式、按指数 降序输出多项式实现、多项式相加、相减、求导等操作(A simple calculator with sparse polynomials of one element. Enter and build polynomials, exponentially In descending order output polynomial realization, polynomial addition, subtraction, derivat
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]