Question: Implement a class Polynomial that describes a polynomial such as p(x)=5x^10 + 9x^7 x -10 Store a polynomial as a linked list of terms. A
Implement a class Polynomial that describes a polynomial such as
p(x)=5x^10 + 9x^7 x -10
Store a polynomial as a linked list of terms. A term contains the coefficient and the power of x. For
example, you would store p(x) as (5,10),(9,7)(-1,1),(- 10,0)
Supply methods to add, multiply, and print polynomials, and to compute the derivative of a polynomial. (JAVA)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
