文件名称:duoxiangshi
介绍说明--下载内容均来自于网络,请自行研究使用
题目说明:
要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。
输入:
输入数据为两行,分别表示两个一元多项式。每个一元多项式以指数递增的顺序输入多项式各项的系数(整数)、指数(整数)。
例如:1+2x+x2表示为:<1,0>,<2,1>,<1,2>,
输出:
以指数递增的顺序输出乘积: <系数,指数>,<系数,指数>,<系数,指数>,
零多项式的输出格式为:<0,0>,-Topic: require the use of a linked list, find the the two unary polynomial.: H3 = h1* h2. The function prototype: void multiplication (NODE* h1, NODE* h2, NODE* h3). Input: The input data for the two lines, respectively, said two unary polynomial. $ 1 each polynomial exponential order of increasing input polynomial the coefficient (integer) index (integer). For example: 1+2x+x2 said: < 1,0> , < 2,1> , < 1,2> , the output: output to the index in order of increasing product: < coefficient index> < factor, index> , < coefficient, the index The zero polynomial output format: < 0,0> ,
要求采用链表形式,求两个一元多项式的乘积:h3 = h1*h2。函数原型为:void multiplication( NODE * h1, NODE * h2, NODE * h3 )。
输入:
输入数据为两行,分别表示两个一元多项式。每个一元多项式以指数递增的顺序输入多项式各项的系数(整数)、指数(整数)。
例如:1+2x+x2表示为:<1,0>,<2,1>,<1,2>,
输出:
以指数递增的顺序输出乘积: <系数,指数>,<系数,指数>,<系数,指数>,
零多项式的输出格式为:<0,0>,-Topic: require the use of a linked list, find the the two unary polynomial.: H3 = h1* h2. The function prototype: void multiplication (NODE* h1, NODE* h2, NODE* h3). Input: The input data for the two lines, respectively, said two unary polynomial. $ 1 each polynomial exponential order of increasing input polynomial the coefficient (integer) index (integer). For example: 1+2x+x2 said: < 1,0> , < 2,1> , < 1,2> , the output: output to the index in order of increasing product: < coefficient index> < factor, index> , < coefficient, the index The zero polynomial output format: < 0,0> ,
(系统自动生成,下载前可以参看下载内容)
下载文件列表
duoxiangshi\一元多项式相乘.cpp
duoxiangshi