【C++问题:定义一个多项式类Polynomial,其实例为-查字典问答网
分类选择

来自姜学锋的问题

  【C++问题:定义一个多项式类Polynomial,其实例为多项式:a0+a1x+a2x2+...+anxn定义一个多项式类Polynomial,其实例为多项式:a0+a1x+a2x2+...+anxn,该类具有如下的接口:classPolynomial{.public:Polynomial();Polynomial】

  C++问题:定义一个多项式类Polynomial,其实例为多项式:a0+a1x+a2x2+...+anxn

  定义一个多项式类Polynomial,其实例为多项式:a0+a1x+a2x2+...+anxn,该类具有如下的接口:

  classPolynomial

  {.

  public:

  Polynomial();

  Polynomial(doublecoefs[],intexps[],intsize);

  //系数数组、指数数组和项数

  Polynomial(constPolynomial&);

  Polynomial();

  Polynomial&operator=(constPolynomial&);

  intdegree()const;//最高幂指数

  doubleevaluate(doublex)const;//计算多项式的值

  booloperator==(constPolynomial&)const;

  booloperator!=(constPolynomial&)const;

  Polynomialoperator+(constPolynomial&)const;

  Polynomialoperator-(constPolynomial&)const;

  Polynomialoperator*(constPolynomial&)const;

  Polynomial&operator+=(constPolynomial&);

  Polynomial&operator-=(constPolynomial&);

  Polynomial&operator*=(constPolynomial&);

  };

1回答
2020-10-21 06:44
我要回答
请先登录
接道良

  其实很简单classPolynomial{double*pcoefs;int*pexps;intnum_of_items;intadd(constPolynomial&p,double*coefs,int*exps)const;intsubtract(constPolynomial&p,double*coefs,int*exps)const;...

2020-10-21 06:47:20

最新问答

推荐文章

猜你喜欢

附近的人在看

推荐阅读

拓展阅读

  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  •