Description: Using dynamic arrays, implement a Polynomial class with polynomial addition,
subtraction, and multiplication.
Hint: A variable in a polynomial does nothing but act as a placeholder for the
coefficients. Hence, the only interesting thing about polynomials is the array of
coefficients and the corresponding exponent. Think about the polynomial
x^3- x+ 1
To Search:
File list (Check if you may need any files):
PolynomialTest.cpp
Polynomial.cpp
Polynomial.h