Question: Write a class Polynomial that stores a polynomial such as as a linked list of terms. A term contains the coefficient and the power of
Write a class Polynomial that stores a polynomial such as
![]()
as a linked list of terms. A term contains the coefficient and the power of x. For example, you would store p(x) as
![]()
Supply methods to add, multiply, and print polynomials. Supply a constructor that makes a polynomial from a single term. For example, the polynomial p can be constructed as
p(x) = 5x10 + 9x - x - 10 %3D
Step by Step Solution
3.28 Rating (166 Votes )
There are 3 Steps involved in it
import javautilLinkedList class Polynomial LinkedList terms pub... View full answer
Get step-by-step solutions from verified subject matter experts
