horner.cpp
来自「data structures, algorithms and Applicat」· C++ 代码 · 共 20 行
CPP
20 行
// evaluate a polynomial using Horner's rule
#include <iostream.h>
template<class T>
T Horner(T coeff[], int n, const T& x)
{// Evaluate the degree n polynomial with
// coefficients coeff[0:n] at the point x.
T value = coeff[n];
for (int i = 1; i <= n; i++)
value = value * x + coeff[n - i];
return value;
}
void main(void)
{
int a[6] = {1, 2, 3, 4, 5, 6};
cout << Horner(a,5,2) << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?