Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 360 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 360 Bytes

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.