码迷,mamicode.com
首页 > 其他好文 > 详细

多项式求值 n维多项式 Horner解法

时间:2019-02-03 23:58:52      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:pen   color   include   col   for   temp   pac   gif   cin   

技术图片
#include<iostream>
using namespace std;
template<class T>
T ploy(T *coeff,int n,const T&x){
    T value=coeff[n];
    for(int i=1;i<=n;i++)
        value=value*x+coeff[i-1];//你麻痹 
        return value;
}
int main()
{
    int n,x;
    cin>>n>>x;
    int a[n+1];
    for(int i=n;i>=0;i--) cin>>a[i]; 
    cout<<ploy(a,n,x);
} 
View Code

利用递归计算多项式

多项式求值 n维多项式 Horner解法

标签:pen   color   include   col   for   temp   pac   gif   cin   

原文地址:https://www.cnblogs.com/helloworld2019/p/10351137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!