/Polynomial

A polynomial class implementation in the form of sorted linked list. Supporting addition, subtraction and multiplication between polynomials

Primary LanguageC++MIT LicenseMIT

Polynomial

A polynomial class implementation in the form of sorted linked list.

Supporting addition and multiplication between polynomials

User can enter terms for two polynomials, P(x) and Q(x), and the program will print the outcome of their addition and multiplication. The evaluation of a certain value of the polynomial (e.g. P(1)) is also possible.